From: Zouplaz Date: 2006-10-04T17:40:09+09:00 Subject: Re: Where to find RoR exceptions ? le 03/10/2006 15:43, Paul Battley nous a dit: > On 03/10/06, Zouplaz wrote: >> Hello, where can I find a extensive list of the exceptions classes >> defined by Rails ? >> >> There's nothing in the API doc > > You can make one: > > % script/console >>> ObjectSpace.each_object(Class) do |e| p e if > e.ancestors.include?(Exception); end > > Subtracting the exception classes that exist before Rails's libraries > are included is left as an exercise for the reader. ;-) > > Paul. > Thanks a lot !