Custom error message

Hello,

How to get error page redirection when i am get rails conventional exception .

Say like, i have error in my controller and rails will give me exception and will render me error page but i want custom error page redirection.

Thanks.

You can define a rescue function in your ApplicationController and then do whatever you want:

def rescue_action(exception) # Rescue code, redirection, ecc. end

This function is called if exists, if not Rails shows you the default one.

Regards.

Franco Catena.

Okay ! Will follow instruction , Thanks.