Exception: Eluvia::Errors::NotFound
- Inherits:
-
StandardError
- Object
- StandardError
- StandardError
- Eluvia::Errors::NotFound
- Defined in:
- lib/eluvia/errors/not_found.rb
Instance Attribute Summary
Attributes inherited from StandardError
#error, #message, #no_sentry, #source, #status, #timestamp
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ NotFound
constructor
A new instance of NotFound.
Methods inherited from StandardError
Constructor Details
#initialize(message = nil) ⇒ NotFound
Returns a new instance of NotFound.
5 6 7 8 9 10 11 12 13 |
# File 'lib/eluvia/errors/not_found.rb', line 5 def initialize( = nil) super( || "The requested resource could not be found but may be available in the future.", "Not Found", 404, nil, false ) end |