Class.pm
上传用户:market2
上传日期:2018-11-18
资源大小:18786k
文件大小:24k
源码类别:

外挂编程

开发平台:

Windows_Unix

  1. # This is Exception::Class from http://cpan.uwinnipeg.ca/htdocs/Exception-Class/Exception/Class.html
  2. package Exception::Class;
  3. use 5.005;
  4. use strict;
  5. use vars qw($VERSION $BASE_EXC_CLASS %CLASSES);
  6. use Exporter;
  7. use base qw(Exporter);
  8. our @EXPORT_OK = qw(caught);
  9. use Scalar::Util qw(blessed);
  10. BEGIN { $BASE_EXC_CLASS ||= 'Exception::Class::Base'; }
  11. $VERSION = '1.21';
  12. sub import
  13. {
  14.     my $class = shift;
  15.     local $Exception::Class::Caller = caller();
  16.     my %c;
  17.     my %needs_parent;
  18.     while (my $subclass = shift)
  19.     {
  20. my $def = ref $_[0] ? shift : {};
  21. $def->{isa} = $def->{isa} ? ( ref $def->{isa} ? $def->{isa} : [$def->{isa}] ) : [];
  22.         $c{$subclass} = $def;
  23.     }
  24.     # We need to sort by length because if we check for keys in the
  25.     # Foo::Bar:: stash, this creates a "Bar::" key in the Foo:: stash!
  26.  MAKE_CLASSES:
  27.     foreach my $subclass ( sort { length $a <=> length $b } keys %c )
  28.     {
  29.         my $def = $c{$subclass};
  30. # We already made this one.
  31. next if $CLASSES{$subclass};
  32. {
  33.     no strict 'refs';
  34.     foreach my $parent (@{ $def->{isa} })
  35.     {
  36. unless ( keys %{"$parent::"} )
  37. {
  38.     $needs_parent{$subclass} = { parents => $def->{isa},
  39.  def => $def };
  40.     next MAKE_CLASSES;
  41. }
  42.     }
  43. }
  44. $class->_make_subclass( subclass => $subclass,
  45. def => $def || {},
  46.                               );
  47.     }
  48.     foreach my $subclass (keys %needs_parent)
  49.     {
  50. # This will be used to spot circular references.
  51. my %seen;
  52. $class->_make_parents( %needs_parent, $subclass, %seen );
  53.     }
  54. }
  55. sub _make_parents
  56. {
  57.     my $class = shift;
  58.     my $needs = shift;
  59.     my $subclass = shift;
  60.     my $seen = shift;
  61.     my $child = shift; # Just for error messages.
  62.     no strict 'refs';
  63.     # What if someone makes a typo in specifying their 'isa' param?
  64.     # This should catch it.  Either it's been made because it didn't
  65.     # have missing parents OR it's in our hash as needing a parent.
  66.     # If neither of these is true then the _only_ place it is
  67.     # mentioned is in the 'isa' param for some other class, which is
  68.     # not a good enough reason to make a new class.
  69.     die "Class $subclass appears to be a typo as it is only specified in the 'isa' param for $childn"
  70. unless exists $needs->{$subclass} || $CLASSES{$subclass} || keys %{"$subclass::"};
  71.     foreach my $c ( @{ $needs->{$subclass}{parents} } )
  72.     {
  73. # It's been made
  74. next if $CLASSES{$c} || keys %{"$c::"};
  75. die "There appears to be some circularity involving $subclassn"
  76.     if $seen->{$subclass};
  77. $seen->{$subclass} = 1;
  78. $class->_make_parents( $needs, $c, $seen, $subclass );
  79.     }
  80.     return if $CLASSES{$subclass} || keys %{"$subclass::"};
  81.     $class->_make_subclass( subclass => $subclass,
  82.     def => $needs->{$subclass}{def} );
  83. }
  84. sub _make_subclass
  85. {
  86.     my $class = shift;
  87.     my %p = @_;
  88.     my $subclass = $p{subclass};
  89.     my $def = $p{def};
  90.     my $isa;
  91.     if ($def->{isa})
  92.     {
  93. $isa = ref $def->{isa} ? join ' ', @{ $def->{isa} } : $def->{isa};
  94.     }
  95.     $isa ||= $BASE_EXC_CLASS;
  96.     my $code = <<"EOPERL";
  97. package $subclass;
  98. use vars qw($VERSION);
  99. use base qw($isa);
  100. $VERSION = '1.1';
  101. 1;
  102. EOPERL
  103.     if ($def->{description})
  104.     {
  105. (my $desc = $def->{description}) =~ s/([\'])/\$1/g;
  106. $code .= <<"EOPERL";
  107. sub description
  108. {
  109.     return '$desc';
  110. }
  111. EOPERL
  112.     }
  113.     my @fields;
  114.     if ( my $fields = $def->{fields} )
  115.     {
  116. @fields = UNIVERSAL::isa($fields, 'ARRAY') ? @$fields : $fields;
  117. $code .=
  118.             "sub Fields { return ($_[0]->SUPER::Fields, " .
  119.             join(", ", map { "'$_'" } @fields) . ") }nn";
  120.         foreach my $field (@fields)
  121. {
  122.     $code .= sprintf("sub %s { $_[0]->{%s} }n", $field, $field);
  123. }
  124.     }
  125.     if ( my $alias = $def->{alias} )
  126.     {
  127.         die "Cannot make alias without caller"
  128.             unless defined $Exception::Class::Caller;
  129.         no strict 'refs';
  130.         *{"$Exception::Class::Caller::$alias"} = sub { $subclass->throw(@_) };
  131.     }
  132.     eval $code;
  133.     die $@ if $@;
  134.     $CLASSES{$subclass} = 1;
  135. }
  136. sub caught
  137. {
  138.     my $e = $@;
  139.     my $class;
  140.     if (@_ == 1) {
  141.      $class = $_[0];
  142.     } else {
  143.      $class = $_[1];
  144.     }
  145.     return unless blessed($e) && $e->isa( $class );
  146.     return $e;
  147. }
  148. sub Classes { sort keys %Exception::Class::CLASSES }
  149. package Exception::Class::Base;
  150. use Class::Data::Inheritable;
  151. use Devel::StackTrace 1.07;
  152. use base qw(Class::Data::Inheritable);
  153. BEGIN
  154. {
  155.     __PACKAGE__->mk_classdata('Trace');
  156.     *do_trace = &Trace;
  157.     __PACKAGE__->mk_classdata('NoRefs');
  158.     *NoObjectRefs = &NoRefs;
  159.     __PACKAGE__->NoRefs(1);
  160.     __PACKAGE__->mk_classdata('RespectOverload');
  161.     __PACKAGE__->RespectOverload(0);
  162.     sub Fields { () }
  163. }
  164. use overload
  165.     # an exception is always true
  166.     bool => sub { 1 },
  167.     '""' => 'as_string',
  168.     fallback => 1;
  169. use vars qw($VERSION);
  170. $VERSION = '1.2';
  171. # Create accessor routines
  172. BEGIN
  173. {
  174.     my @fields = qw( message pid uid euid gid egid time trace package file line );
  175.     no strict 'refs';
  176.     foreach my $f (@fields)
  177.     {
  178. *{$f} = sub { my $s = shift; return $s->{$f}; };
  179.     }
  180.     *{'error'} = &message;
  181. }
  182. 1;
  183. sub Classes { Exception::Class::Classes() }
  184. sub throw
  185. {
  186.     my $proto = shift;
  187.     $proto->rethrow if ref $proto;
  188.     die $proto->new(@_);
  189. }
  190. sub rethrow
  191. {
  192.     my $self = shift;
  193.     die $self;
  194. }
  195. sub new
  196. {
  197.     my $proto = shift;
  198.     my $class = ref $proto || $proto;
  199.     my $self = bless {}, $class;
  200.     $self->_initialize(@_);
  201.     return $self;
  202. }
  203. sub _initialize
  204. {
  205.     my $self = shift;
  206.     my %p = @_ == 1 ? ( error => $_[0] ) : @_;
  207.     # Try to get something useful in there (I hope).  Or just give up.
  208.     $self->{message} = $p{message} || $p{error} || $! || '';
  209.     $self->{show_trace} = $p{show_trace} if exists $p{show_trace};
  210.     # CORE::time is important to fix an error with some versions of
  211.     # Perl
  212.     $self->{time} = CORE::time();
  213.     $self->{pid}  = $$;
  214.     $self->{uid}  = $<;
  215.     $self->{euid} = $>;
  216.     $self->{gid}  = $(;
  217.     $self->{egid} = $);
  218.     my @ignore_class   = (__PACKAGE__);
  219.     my @ignore_package = 'Exception::Class';
  220.     if ( my $i = delete $p{ignore_class} )
  221.     {
  222.         push @ignore_class, ( ref($i) eq 'ARRAY' ? @$i : $i );
  223.     }
  224.     if ( my $i = delete $p{ignore_package} )
  225.     {
  226.         push @ignore_package, ( ref($i) eq 'ARRAY' ? @$i : $i );
  227.     }
  228.     $self->{trace} =
  229.         Devel::StackTrace->new( ignore_class     => @ignore_class,
  230.                                 ignore_package   => @ignore_package,
  231.                                 no_refs          => $self->NoRefs,
  232.                                 respect_overload => $self->RespectOverload,
  233.                               );
  234.     if ( my $frame = $self->trace->frame(0) )
  235.     {
  236.         $self->{package} = $frame->package;
  237.         $self->{line} = $frame->line;
  238.         $self->{file} = $frame->filename;
  239.     }
  240.     my %fields = map { $_ => 1 } $self->Fields;
  241.     while ( my ($key, $value) = each %p )
  242.     {
  243.        next if $key =~ /^(?:error|message|show_trace)$/;
  244.        if ( $fields{$key})
  245.        {
  246.            $self->{$key} = $value;
  247.        }
  248.        else
  249.        {
  250.            Exception::Class::Base->throw
  251.                ( error =>
  252.                  "unknown field $key passed to constructor for class " . ref $self );
  253.        }
  254.     }
  255. }
  256. sub description
  257. {
  258.     return 'Generic exception';
  259. }
  260. sub show_trace
  261. {
  262.     my $self = shift;
  263.     if (@_)
  264.     {
  265.         $self->{show_trace} = shift;
  266.     }
  267.     return exists $self->{show_trace} ? $self->{show_trace} : $self->Trace;
  268. }
  269. sub as_string
  270. {
  271.     my $self = shift;
  272.     my $str = $self->full_message;
  273.     $str .= "nn" . $self->trace->as_string
  274.         if $self->show_trace;
  275.     return $str;
  276. }
  277. sub full_message { $_[0]->{message} }
  278. #
  279. # The %seen bit protects against circular inheritance.
  280. #
  281. eval <<'EOF' if $] == 5.006;
  282. sub isa
  283. {
  284.     my ($inheritor, $base) = @_;
  285.     $inheritor = ref($inheritor) if ref($inheritor);
  286.     my %seen;
  287.     no strict 'refs';
  288.     my @parents = ($inheritor, @{"$inheritor::ISA"});
  289.     while (my $class = shift @parents)
  290.     {
  291.         return 1 if $class eq $base;
  292.         push @parents, grep {!$seen{$_}++} @{"$class::ISA"};
  293.     }
  294.     return 0;
  295. }
  296. EOF
  297. 1;
  298. __END__
  299. =head1 NAME
  300. Exception::Class - A module that allows you to declare real exception classes in Perl
  301. =head1 SYNOPSIS
  302.   use Exception::Class
  303.       ( 'MyException',
  304.         'AnotherException' =>
  305.         { isa => 'MyException' },
  306.         'YetAnotherException' =>
  307.         { isa => 'AnotherException',
  308.           description => 'These exceptions are related to IPC' },
  309.         'ExceptionWithFields' =>
  310.         { isa => 'YetAnotherException',
  311.           fields => [ 'grandiosity', 'quixotic' ],
  312.           alias => 'throw_fields',
  313.       );
  314.   # try
  315.   eval { MyException->throw( error => 'I feel funny.' ) };
  316.   # catch
  317.   if ( UNIVERSAL::isa( $@, 'MyException' ) )
  318.   {
  319.      warn $@->error, "n, $@->trace->as_string, "n";
  320.      warn join ' ',  $@->euid, $@->egid, $@->uid, $@->gid, $@->pid, $@->time;
  321.      exit;
  322.   }
  323.   elsif ( UNIVERSAL::isa( $@, 'ExceptionWithFields' ) )
  324.   {
  325.      $@->quixotic ? do_something_wacky() : do_something_sane();
  326.   }
  327.   else
  328.   {
  329.      ref $@ ? $@->rethrow : die $@;
  330.   }
  331.   # use an alias - without parens subroutine name is checked at
  332.   # compile time
  333.   throw_fields error => "No strawberry", grandiosity => "quite a bit";
  334. =head1 DESCRIPTION
  335. Exception::Class allows you to declare exception hierarchies in your
  336. modules in a "Java-esque" manner.
  337. It features a simple interface allowing programmers to 'declare'
  338. exception classes at compile time.  It also has a base exception
  339. class, Exception::Class::Base, that can be easily extended.
  340. It is designed to make structured exception handling simpler and
  341. better by encouraging people to use hierarchies of exceptions in their
  342. applications, as opposed to a single catch-all exception class.
  343. This module does not implement any try/catch syntax.  Please see the
  344. "OTHER EXCEPTION MODULES (try/catch syntax)" section for more
  345. information on how to get this syntax.
  346. =head1 DECLARING EXCEPTION CLASSES
  347. Importing C<Exception::Class> allows you to automagically create
  348. C<Exception::Class::Base> subclasses.  You can also create subclasses
  349. via the traditional means of defining your own subclass with C<@ISA>.
  350. These two methods may be easily combined, so that you could subclass
  351. an exception class defined via the automagic import, if you desired
  352. this.
  353. The syntax for the magic declarations is as follows:
  354. 'MANDATORY CLASS NAME' => %optional_hashref
  355. The hashref may contain the following options:
  356. =over 4
  357. =item * isa
  358. This is the class's parent class.  If this isn't provided then the
  359. class name in C<$Exception::Class::BASE_EXC_CLASS> is assumed to be
  360. the parent (see below).
  361. This parameter lets you create arbitrarily deep class hierarchies.
  362. This can be any other C<Exception::Class::Base> subclass in your
  363. declaration I<or> a subclass loaded from a module.
  364. To change the default exception class you will need to change the
  365. value of C<$Exception::Class::BASE_EXC_CLASS> I<before> calling
  366. C<import()>.  To do this simply do something like this:
  367. BEGIN { $Exception::Class::BASE_EXC_CLASS = 'SomeExceptionClass'; }
  368. If anyone can come up with a more elegant way to do this please let me
  369. know.
  370. CAVEAT: If you want to automagically subclass an
  371. C<Exception::Class::Base> subclass loaded from a file, then you
  372. I<must> compile the class (via use or require or some other magic)
  373. I<before> you import C<Exception::Class> or you'll get a compile time
  374. error.
  375. =item * fields
  376. This allows you to define additional attributes for your exception
  377. class.  Any field you define can be passed to the C<throw()> or
  378. C<new()> methods as additional parameters for the constructor.  In
  379. addition, your exception object will have an accessor method for the
  380. fields you define.
  381. This parameter can be either a scalar (for a single field) or an array
  382. reference if you need to define multiple fields.
  383. Fields will be inherited by subclasses.
  384. =item * alias
  385. Specifying an alias causes this class to create a subroutine of the
  386. specified name in the I<caller's> namespace.  Calling this subroutine
  387. is equivalent to calling C<< <class>->throw(@_) >> for the given
  388. exception class.
  389. Besides convenience, using aliases also allows for additional compile
  390. time checking.  If the alias is called I<without parentheses>, as in
  391. C<throw_fields "an error occurred">, then Perl checks for the
  392. existence of the C<throw_fields()> subroutine at compile time.  If
  393. instead you do C<< ExceptionWithFields->throw(...) >>, then Perl
  394. checks the class name at runtime, meaning that typos may sneak
  395. through.
  396. =item * description
  397. Each exception class has a description method that returns a fixed
  398. string.  This should describe the exception I<class> (as opposed to
  399. any particular exception object).  This may be useful for debugging if
  400. you start catching exceptions you weren't expecting (particularly if
  401. someone forgot to document them) and you don't understand the error
  402. messages.
  403. =back
  404. The C<Exception::Class> magic attempts to detect circular class
  405. hierarchies and will die if it finds one.  It also detects missing
  406. links in a chain, for example if you declare Bar to be a subclass of
  407. Foo and never declare Foo.
  408. =head1 Catching Exceptions
  409. C<Exception::Class> provides some syntactic sugar for catching
  410. exceptions in a safe manner:
  411.  eval { ... }
  412.  if ( my $e = Exception::Class->caught('My::Error') )
  413.  {
  414.      cleanup();
  415.      do_something_with_exception($e);
  416.  }
  417. The C<caught()> method returns an exception object if the last thrown
  418. exception is of the given class, or a subclass of that class.
  419. Otherwise it returns false.
  420. You should B<always> make a copy of the exception object, rather than
  421. using C<$@> directly.  This is necessary because if your C<cleanup()>
  422. function uses C<eval>, or calls something which uses it, then C<$@> is
  423. overwritten.  Copying the exception preserves it for the call to
  424. C<do_something_with_exception()>.
  425. =head2 Uncatchable Exceptions
  426. Internally, the C<caught()> method will call C<isa()> on the exception
  427. object.  You could make an exception "uncatchable" by overriding
  428. C<isa()> in that class like this:
  429.  package Exception::Uncatchable;
  430.  sub isa { shift->rethrow }
  431. Of course, this only works if you always call 
  432. C<< Exception::Class->caught() >> after an C<eval>.
  433. =head1 Exception::Class::Base CLASS METHODS
  434. =over 4
  435. =item * Trace($boolean)
  436. Each C<Exception::Class::Base> subclass can be set individually to
  437. include a a stracktrace when the C<as_string> method is called.  The
  438. default is to not include a stacktrace.  Calling this method with a
  439. value changes this behavior.  It always returns the current value
  440. (after any change is applied).
  441. This value is inherited by any subclasses.  However, if this value is
  442. set for a subclass, it will thereafter be independent of the value in
  443. C<Exception::Class::Base>.
  444. This is a class method, not an object method.
  445. =item * NoRefs($boolean)
  446. When a C<Devel::StackTrace> object is created, it walks through the
  447. stack and stores the arguments which were passed to each subroutine on
  448. the stack.  If any of these arguments are references, then that means
  449. that the C<Devel::StackTrace> ends up increasing the refcount of these
  450. references, delaying their destruction.
  451. Since C<Exception::Class::Base> uses C<Devel::StackTrace> internally,
  452. this method provides a way to tell C<Devel::StackTrace> not to store
  453. these references.  Instead, C<Devel::StackTrace> replaces references
  454. with their stringified representation.
  455. This method defaults to true.  As with C<Trace()>, it is inherited by
  456. subclasses but setting it in a subclass makes it independent
  457. thereafter.
  458. =item * RespectOverload($boolean)
  459. When a C<Devel::StackTrace> object stringifies, by default it ignores
  460. stringification overloading on any objects being dealt with.
  461. Since C<Exception::Class::Base> uses C<Devel::StackTrace> internally,
  462. this method provides a way to tell C<Devel::StackTrace> to respect
  463. overloading.
  464. This method defaults to false.  As with C<Trace()>, it is inherited by
  465. subclasses but setting it in a subclass makes it independent
  466. thereafter.
  467. =item * Fields
  468. This method returns the extra fields defined for the given class, as
  469. an array.
  470. =item * throw( $message )
  471. =item * throw( message => $message )
  472. =item * throw( error => $error )
  473. This method creates a new object with the given error message.  If no
  474. error message is given, C<$!> is used.  It then die's with this object
  475. as its argument.
  476. This method also takes a C<show_trace> parameter which indicates
  477. whether or not the particular exception object being created should
  478. show a stacktrace when its C<as_string()> method is called.  This
  479. overrides the value of C<Trace()> for this class if it is given.
  480. The frames included in the trace can be controlled by the C<ignore_class>
  481. and C<ignore_package> parameters. These are passed directly to
  482. Devel::Stacktrace's constructor. See C<Devel::Stacktrace> for more details.
  483. If only a single value is given to the constructor it is assumed to be
  484. the message parameter.
  485. Additional keys corresponding to the fields defined for the particular
  486. exception subclass will also be accepted.
  487. =item * new
  488. This method takes the same parameters as C<throw()>, but instead of
  489. dying simply returns a new exception object.
  490. This method is always called when constructing a new exception object
  491. via the C<throw()> method.
  492. =item * description
  493. Returns the description for the given C<Exception::Class::Base>
  494. subclass.  The C<Exception::Class::Base> class's description is
  495. "Generic exception" (this may change in the future).  This is also an
  496. object method.
  497. =back
  498. =head1 Exception::Class::Base OBJECT METHODS
  499. =over 4
  500. =item * rethrow
  501. Simply dies with the object as its sole argument.  It's just syntactic
  502. sugar.  This does not change any of the object's attribute values.
  503. However, it will cause C<caller()> to report the die as coming from
  504. within the C<Exception::Class::Base> class rather than where rethrow
  505. was called.
  506. Of course, you always have access to the original stacktrace for the
  507. exception object.
  508. =item * message
  509. =item * error
  510. Returns the error/message associated with the exception.
  511. =item * pid
  512. Returns the pid at the time the exception was thrown.
  513. =item * uid
  514. Returns the real user id at the time the exception was thrown.
  515. =item * gid
  516. Returns the real group id at the time the exception was thrown.
  517. =item * euid
  518. Returns the effective user id at the time the exception was thrown.
  519. =item * egid
  520. Returns the effective group id at the time the exception was thrown.
  521. =item * time
  522. Returns the time in seconds since the epoch at the time the exception
  523. was thrown.
  524. =item * package
  525. Returns the package from which the exception was thrown.
  526. =item * file
  527. Returns the file within which the exception was thrown.
  528. =item * line
  529. Returns the line where the exception was thrown.
  530. =item * trace
  531. Returns the trace object associated with the object.
  532. =item * show_trace($boolean)
  533. This method can be used to set whether or not a strack trace is
  534. included when the as_string method is called or the object is
  535. stringified.
  536. =item * as_string
  537. Returns a string form of the error message (something like what you'd
  538. expect from die).  If the class or object is set to show traces then
  539. then the full trace is also included.  The result looks like
  540. C<Carp::confess()>.
  541. =item * full_message
  542. Called by the C<as_string()> method to get the message.  By default,
  543. this is the same as calling the C<message()> method, but may be
  544. overridden by a subclass.  See below for details.
  545. =back
  546. =head1 OVERLOADING
  547. The C<Exception::Class::Base> object is overloaded so that
  548. stringification produces a normal error message.  It just calls the
  549. as_string method described above.  This means that you can just
  550. C<print $@> after an C<eval> and not worry about whether or not its an
  551. actual object.  It also means an application or module could do this:
  552.  $SIG{__DIE__} = sub { Exception::Class::Base->throw( error => join '', @_ ); };
  553. and this would probably not break anything (unless someone was
  554. expecting a different type of exception object from C<die()>).
  555. =head1 OVERRIDING THE as_string METHOD
  556. By default, the C<as_string()> method simply returns the value
  557. C<message> or C<error> param plus a stack trace, if the class's
  558. C<Trace()> method returns a true value or C<show_trace> was set when
  559. creating the exception.
  560. However, once you add new fields to a subclass, you may want to
  561. include those fields in the stringified error.
  562. Inside the C<as_string()> method, the message (non-stack trace)
  563. portion of the error is generated by calling the C<full_message()>
  564. method.  This can be easily overridden.  For example:
  565.   sub full_message
  566.   {
  567.       my $self = shift;
  568.       my $msg = $self->message;
  569.       $msg .= " and foo was " . $self->foo;
  570.       return $msg;
  571.   }
  572. =head1 USAGE RECOMMENDATION
  573. If you're creating a complex system that throws lots of different
  574. types of exceptions, consider putting all the exception declarations
  575. in one place.  For an app called Foo you might make a
  576. C<Foo::Exceptions> module and use that in all your code.  This module
  577. could just contain the code to make C<Exception::Class> do its
  578. automagic class creation.  Doing this allows you to more easily see
  579. what exceptions you have, and makes it easier to keep track of them.
  580. This might look something like this:
  581.   package Foo::Bar::Exceptions;
  582.   use Exception::Class ( Foo::Bar::Exception::Senses =>
  583.                         { description => 'sense-related exception' },
  584.                          Foo::Bar::Exception::Smell =>
  585.                          { isa => 'Foo::Bar::Exception::Senses',
  586.                            fields => 'odor',
  587.                            description => 'stinky!' },
  588.                          Foo::Bar::Exception::Taste =>
  589.                          { isa => 'Foo::Bar::Exception::Senses',
  590.                            fields => [ 'taste', 'bitterness' ],
  591.                            description => 'like, gag me with a spoon!' },
  592.                          ... );
  593. You may want to create a real module to subclass
  594. C<Exception::Class::Base> as well, particularly if you want your
  595. exceptions to have more methods.
  596. =head2 Subclassing Exception::Class::Base
  597. As part of your usage of C<Exception::Class>, you may want to create
  598. your own base exception class which subclasses
  599. C<Exception::Class::Base>.  You should feel free to subclass any of
  600. the methods documented above.  For example, you may want to subclass
  601. C<new()> to add additional information to your exception objects.
  602. =head1 Exception::Class FUNCTIONS
  603. The C<Exception::Class> method offers one function, C<Classes()>,
  604. which is not exported.  This method returns a list of the classes that
  605. have been created by calling the C<Exception::Class> import() method.
  606. Note that this is I<all> the subclasses that have been created, so it
  607. may include subclasses created by things like CPAN modules, etc.  Also
  608. note that if you simply define a subclass via the normal Perl method
  609. of setting C<@ISA> or C<use base>, then your subclass will not be
  610. included.
  611. =head1 OTHER EXCEPTION MODULES (try/catch syntax)
  612. If you are interested in adding try/catch/finally syntactic sugar to
  613. your code then I recommend you check out U. Arun Kumar's C<Error.pm>
  614. module, which implements this syntax.  It also includes its own base
  615. exception class, C<Error::Simple>.
  616. If you would prefer to use the C<Exception::Class::Base> class
  617. included with this module, you'll have to add this to your code
  618. somewhere:
  619.   push @Exception::Class::Base::ISA, 'Error'
  620.       unless Exception::Class::Base->isa('Error');
  621. It's a hack but apparently it works.
  622. =head1 AUTHOR
  623. Dave Rolsky, <autarch@urth.org>
  624. =head1 SEE ALSO
  625. Devel::StackTrace - used by this module to create stack traces
  626. Error.pm - implements try/catch in Perl.  Also provides an exception
  627. base class.
  628. Test::Exception - a module that helps you test exception based code.
  629. Numerous other modules/frameworks seem to have their own exception
  630. classes (SPOPS and Template Toolkit, to name two) but none of these
  631. seem to be designed for use outside of these packages.
  632. =cut