repo.or.cz
/
merb_mart.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Create note on discontinued development
[merb_mart.git]
/
app
/
controllers
/
exceptions.rb
blob
cc07d5aa8494e3489deb39622889faa7da5249ec
1
class Exceptions < Application
2
3
# handle NotFound exceptions (404)
4
def not_found
5
render :format => :html
6
end
7
8
# handle NotAcceptable exceptions (406)
9
def not_acceptable
10
render :format => :html
11
end
12
13
end