class Eezee::TimeoutError

Attributes

response[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method
# File lib/eezee/errors/timeout_error.rb, line 7
def initialize(response)
  @response = response
  super(response.original)
end

Public Instance Methods

log() click to toggle source
# File lib/eezee/errors/timeout_error.rb, line 12
def log
  Eezee::Logger.error(self)
end