search for: page_not_found

Displaying 1 result from an estimated 1 matches for "page_not_found".

Did you mean: ae_not_found
2008 Apr 30
7
rescue_from issue with AWS - uninitialized constant
The new rescue_from in edge rails seems to conflict with ActionWebService, which I need for various other purposes. When I define, for example (with AWS gem installed): <b>rescue_from ActionController::RoutingError, :with => :page_not_found</b> I get the exception: <b>uninitialized constant ActionWebService::Dispatcher::ActionController::Base</b> OK, so AWS interfers with the inheritance chain I guess, but if I define: <b>rescue_from Object::ActionController::RoutingError, :with => :page_not_found</b&...