Hello,
I defined a before filter in my controller:
before_filter :find, :only => [:caller]
and I want to catch exceptions in "find" method :
def find
begin
...
rescue Exception
redirect_to somewhere
end
end
but how can I prevent the "caller" method from continuing executing ?