This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
class Exceptions < Application
|
|
|
|
# handle NotFound exceptions (404)
|
|
def not_found
|
|
render :format => :html
|
|
end
|
|
|
|
# handle NotAcceptable exceptions (406)
|
|
def not_acceptable
|
|
render :format => :html
|
|
end
|
|
|
|
end |