Exception::Fatal - Thrown when core function has a fatal error


Fatal-Exception documentation  | view source Contained in the Fatal-Exception distribution.

Index


NAME

Top

Exception::Fatal - Thrown when core function has a fatal error

SYNOPSIS

Top

  use Exception::Fatal;

  eval {
      open my $fh, '/etc/passwd', '+badmode';
  };
  if ($@) {
      my $e = Exception::Fatal->catch;
      $e->throw( message => 'Cannot open' );
  };

DESCRIPTION

Top

This class is an Exception::Died exception thrown when core function has a trappable fatal error.

BASE CLASSES

Top

ATTRIBUTES

Top

This class provides new attributes. See Exception::Base for other descriptions.

message : Str = "Unknown function failed" {rw}

Contains the message of the exception. This class overrides the default value from Exception::Base class.

SEE ALSO

Top

Exception::Died, Exception::Fatal, Fatal::Exception.

BUGS

Top

If you find the bug, please report it.

AUTHOR

Top

Piotr Roszatycki <dexter@debian.org>

LICENSE

Top

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.

See http://www.perl.com/perl/misc/Artistic.html


Fatal-Exception documentation  | view source Contained in the Fatal-Exception distribution.