http://qs321.pair.com?node_id=130649


in reply to CGI Error Handling

The simplest way to handle errors is eval block. It acts like java try{}catch{} statement. For example:
eval{ ...code...}; if ($@) { handle error }
For complex error handling Error.pm module exists. It's very useful for scripts with an object-oriented structure. Example:
use Error; try{ do something... }catch Error::Simple with{ handling... }finally{ ... }
Looks like Java code :-)