use strict;
use warnings;
use 5.012;
use Exception::Class (
'MyException',
'CommandException' => { isa => 'MyException' },
'TimeoutException' => {
isa => 'CommandException',
description =>
'This exception resulted from running the metrics commands'
},
'DBException' => {
isa => 'MyException',
description => 'DB returned error'
}
);
&ThrowMyException();
sub ThrowMyException() {
eval{ TimeoutException->throw(error=>"This is error due to timeout
+") };
my $err;
if ($err = Exception::Class->caught('TimeoutException') ) {
#print Dumper($err);
#print "err is of type ".ref($err);
die $err->description . ": " . $err->error;
}
elsif ( $err = Exception::Class->caught("MetricsException") ) {
#print Dumper($err);
die $err->error;
}
}
If you see class names like A::B::C, that means the class is named C and it can be found in the directory A/B/. The A::B:: part is a namespace name to prevent name conflicts, but it also indicates the directory structure where the class is located. When you write A::B::C in your program, perl searches all the directories in @INC for a directory named A that has a subdirectory named B, which contains a file called C.pm.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|