Displaying 1 result from an estimated 1 matches for "route_not_found".
2009 Dec 25
18
rescue_from ActionController::RoutingError II
...9;34e000fc7cc2daeae150a89535f7f87d''
# Be sure to include AuthenticationSystem in Application Controller
# instead
include AuthenticatedSystem
#Shnelvar
debugger # This one gets hit
#neither rescue_from seems to work
rescue_from ActionController::RoutingError, :with => :route_not_found
# rescue_from ActionController::RoutingError, :with => :render_404
protected
def route_not_found
debugger #this one does not
render :text => ''What are you looking for ?'', :status => :not_found
end
#Shnelvar end
end
------------------------
As I scou...