Skip to content

Commit

Permalink
Update error.rb
Browse files Browse the repository at this point in the history
fix to issue hellosign#103
  • Loading branch information
rohandey authored Feb 4, 2020
1 parent 504ba87 commit 240c308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/hello_sign/error.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module Error
class Error < StandardError;
attr_accessor :request_uri, :response_body, :response_status

def initialize(response_status, response_body = nil, request_uri)
def initialize(response_status, response_body = nil, request_uri = nil)
@request_uri = request_uri
@response_body = response_body
@response_status = response_status
Expand Down

0 comments on commit 240c308

Please sign in to comment.