| Fatal-Exception documentation | view source | Contained in the Fatal-Exception distribution. |
Exception::Fatal - Thrown when core function has a fatal error
use Exception::Fatal;
eval {
open my $fh, '/etc/passwd', '+badmode';
};
if ($@) {
my $e = Exception::Fatal->catch;
$e->throw( message => 'Cannot open' );
};
This class is an Exception::Died exception thrown when core function has a trappable fatal error.
This class provides new attributes. See Exception::Base for other descriptions.
Contains the message of the exception. This class overrides the default value from Exception::Base class.
If you find the bug, please report it.
Piotr Roszatycki <dexter@debian.org>
Copyright (C) 2008 by Piotr Roszatycki <dexter@debian.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Fatal-Exception documentation | view source | Contained in the Fatal-Exception distribution. |