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
Converted view ERB syntax to Haml
[merb_mart.git]
/
app
/
controllers
/
exceptions.rb
blob
8f462b14dd408ce3e9ea2bf8477691cf0acfd2e3
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