DeveloperHell | Languages: All | PHP | Python | .NET | Java | CSS | Ruby | Javascript   Site: Statistics
want to join us? register, it's easy | help

browse by tag: exception in language

sort by

newest, oldest, most popular


category icon

Inside Ruby on Rails: Rescuable and rescue_from

in Ruby added by admin, on 26/12/2009 exception ruby on rails

Last time I talked about the ActiveSupport Module#delegate method. Today, I want to introduce an other poweful ActiveSupport module: Rescuable, also known in the Rails ecosystem as rescue_from.

comment save report
category icon

Re-throwing exceptions in Python

in Python added by admin, on 15/11/2007 exception intermediate

When dealing seriously with error handling, an important technique is to be able to manipulate exceptions in ways other than simply throwing and catching them. One of these is to re-throw exceptions.

comment save report