webrat/spec/integration/merb/app/controllers/exceptions.rb

13 lines
228 B
Ruby
Raw Normal View History

class Exceptions < Merb::Controller
# handle NotFound exceptions (404)
def not_found
render :format => :html
end
# handle NotAcceptable exceptions (406)
def not_acceptable
render :format => :html
end
end