This manual page is for Mac OS X version 10.6.3

If you are running a different version of Mac OS X, view the documentation locally:

  • In Terminal, using the man(1) command

Reading manual pages

Manual pages are intended as a quick reference for people who already understand a technology.

  • For more information about the manual page format, see the manual page for manpages(5).

  • For more information about this technology, look for other documentation in the Apple Reference Library.

  • For general information about writing shell scripts, read Shell Scripting Primer.



Fatal(3pm)                            Perl Programmers Reference Guide                            Fatal(3pm)



NAME
       Fatal - replace functions with equivalents which succeed or die

SYNOPSIS
           use Fatal qw(open close);

           sub juggle { . . . }
           import Fatal 'juggle';

DESCRIPTION
       "Fatal" provides a way to conveniently replace functions which normally return a false value when
       they fail with equivalents which raise exceptions if they are not successful.  This lets you use
       these functions without having to test their return values explicitly on each call.  Exceptions can
       be caught using "eval{}".  See perlfunc and perlvar for details.

       The do-or-die equivalents are set up simply by calling Fatal's "import" routine, passing it the names
       of the functions to be replaced.  You may wrap both user-defined functions and overridable CORE oper-ators operators
       ators (except "exec", "system" which cannot be expressed via prototypes) in this way.

       If the symbol ":void" appears in the import list, then functions named later in that import list
       raise an exception only when these are called in void context--that is, when their return values are
       ignored.  For example

               use Fatal qw/:void open close/;

               # properly checked, so no exception raised on error
               if(open(FH, "< /bogotic") {
                       warn "bogo file, dude: $!";
               }

               # not checked, so error raises an exception
               close FH;

BUGS
       You should not fatalize functions that are called in list context, because this module tests whether
       a function has failed by testing the boolean truth of its return value in scalar context.

AUTHOR
       Lionel Cons (CERN).

       Prototype updates by Ilya Zakharevich <ilya@math.ohio-state.edu>.



perl v5.8.9                                      2001-09-21                                       Fatal(3pm)

Reporting Problems

The way to report a problem with this manual page depends on the type of problem:

Content errors
Report errors in the content of this documentation to the Perl project. (See perlbug(1) for submission instructions.)
Bug reports
Report bugs in the functionality of the described tool or API to Apple through Bug Reporter and to the Perl project using perlbug(1).
Formatting problems
Report formatting mistakes in the online version of these pages with the feedback links below.

Did this document help you? Yes It's good, but... Not helpful...