class DeepL::Exceptions::RequestError

Attributes

request[R]
response[R]

Public Class Methods

new(request, response) click to toggle source
Calls superclass method
# File lib/deepl/exceptions/request_error.rb, line 8
def initialize(request, response)
  super()
  @request = request
  @response = response
end

Public Instance Methods

message() click to toggle source
# File lib/deepl/exceptions/request_error.rb, line 14
def message
  'Unknown error.'
end