Class: ExceptionsApp
Instance Method Summary
collapse
call, local_prefixes, #process, #unprocessable_entity
Instance Method Details
#bad_request ⇒ Object
2
3
|
# File 'lib/generators/rambulance/templates/exceptions_app.rb', line 2
def bad_request
end
|
#forbidden ⇒ Object
5
6
|
# File 'lib/generators/rambulance/templates/exceptions_app.rb', line 5
def forbidden
end
|
#internal_server_error ⇒ Object
8
9
|
# File 'lib/generators/rambulance/templates/exceptions_app.rb', line 8
def internal_server_error
end
|
#not_found ⇒ Object
11
12
|
# File 'lib/generators/rambulance/templates/exceptions_app.rb', line 11
def not_found
end
|
#unprocessable_content ⇒ Object
14
15
|
# File 'lib/generators/rambulance/templates/exceptions_app.rb', line 14
def unprocessable_content
end
|