Exception: Rentlinx::NotFound

Inherits:
HTTPError show all
Defined in:
lib/rentlinx/errors.rb

Overview

Thrown when error code 404 (not found) is received

Instance Attribute Summary

Attributes inherited from HTTPError

#response

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ NotFound

Returns a new instance of NotFound.



70
71
72
# File 'lib/rentlinx/errors.rb', line 70

def initialize(response)
  super(response, 'The item you requested could not be found on the remote server.')
end