From: Michal Sza Date: 2008-01-11T01:17:10+09:00 Subject: Rescu all errors and then case statement How can I read what type of error occured in rescue clause. For example, I have the following: begin "some code here" rescue case when "error type 1" when "error type 2" end end I know I could raise errors within code section and then have specif rescues, but I want to have one rescue and then do different things with it in the rescue. Thanks in advance. -- Posted via http://www.ruby-forum.com/.