Exception: Sidewalk::NotFoundError
- Defined in:
- lib/sidewalk/errors.rb
Overview
Tells the client that the resource they requested does not exist.
This is a 404 response.
Instance Method Summary collapse
-
#initialize ⇒ NotFoundError
constructor
A new instance of NotFoundError.
Methods inherited from HttpError
Constructor Details
#initialize ⇒ NotFoundError
Returns a new instance of NotFoundError.
67 68 69 |
# File 'lib/sidewalk/errors.rb', line 67 def initialize super 404, 'Not Found' end |