I'd add another vote for Exception::Class. It allows exceptions classes to be declared quickly and easily and has become my fave since discovering its existance.
I tend to have a single module that declares all my exceptions. So for my Foo application I'd have something like:
package Foo::Exceptions;
use strict;
use warnings;
use Exception::Class (
'Foo::Exception::DBI' => {
description => 'DBI Error',
# error => $DBI::errstr,
},
'Foo::Exception::DBI::Dupe' => {
description => 'Duplicate key',
isa => 'Foo::Exception::DBI',
# error => name of duplicate key,
},
'Foo::Exception::Dupe' => {
description => 'Duplicate entry',
fields => [ 'name' ],
# error => value of duplicate field
},
# etc.
);
Comments are because Exception::Class objects have a default "error" field and I like to document what that should be used for where I declare the class.
Throw exceptions like this:
Foo::Exception::DBI->throw($DBI::errstr)
Foo::Exception::Dupe->throw(name => $name, error => $value);
Because of the closure issues raised by thraxil, I use the eval / if idiom instead of any of the modules that provide extra try/catch syntax.
eval {$foo->something_that_might_die};
if (ref($@)) {
if ($@->isa('Foo::Exception::Dupe') ) {
warn "duplicate entry ", $@->name, " ($@)\n"; undef $@;
};
};
die $@ if $@;
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|