Movatterモバイル変換


[0]ホーム

URL:


Fatal
(source,CPAN)
version 1.03
You are viewing the version of this documentation from Perl 5.8.7.View the latest version

CONTENTS

#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 usingeval{}. Seeperlfunc andperlvar for details.

The do-or-die equivalents are set up simply by calling Fatal'simport routine, passing it the names of the functions to be replaced. You may wrap both user-defined functions and overridable CORE operators (exceptexec,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 errorif(open(FH, "< /bogotic") {warn "bogo file, dude: $!";}# not checked, so error raises an exceptionclose FH;

#AUTHOR

Lionel.Cons@cern.ch

prototype updates by Ilya Zakharevich ilya@math.ohio-state.edu

Perldoc Browser is maintained by Dan Book (DBOOK). Please contact him via theGitHub issue tracker oremail regarding any issues with the site itself, search, or rendering of documentation.

The Perl documentation is maintained by the Perl 5 Porters in the development of Perl. Please contact them via thePerl issue tracker, themailing list, orIRC to report any issues with the contents or format of the documentation.


[8]ページ先頭

©2009-2025 Movatter.jp