Exception: Spikard::Errors::NotFoundError
- Defined in:
- lib/spikard/errors.rb
Instance Attribute Summary
Attributes inherited from Error
#problem_details_type, #status_code
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ NotFoundError
constructor
Raised when the requested resource does not exist.
Methods inherited from Error
Constructor Details
#initialize(message = nil) ⇒ NotFoundError
Raised when the requested resource does not exist.
26 27 28 |
# File 'lib/spikard/errors.rb', line 26 def initialize( = nil) super(, status_code: 404, problem_details_type: nil) end |