Converted view ERB syntax to Haml
[merb_mart.git] / app / controllers / exceptions.rb
blob8f462b14dd408ce3e9ea2bf8477691cf0acfd2e3
1 class Exceptions < Application
2   
3   # handle NotFound exceptions (404)
4   def not_found
5     render :format => :html
6   end
8   # handle NotAcceptable exceptions (406)
9   def not_acceptable
10     render :format => :html
11   end
13 end