Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

autodie::exception::system

Name autodie::exception::system
Version 2.29
Located at /usr/share/perl5/vendor_perl
File /usr/share/perl5/vendor_perl/autodie/exception/system.pm
Is Core No
Search CPAN for this module autodie::exception::system
Documentation autodie::exception::system
Module Details autodie::exception::system

NAME

autodie::exception::system - Exceptions from autodying system().


SYNOPSIS

    eval {
        use autodie qw(system);
        system($cmd, @args);
    };
    if (my $E = $@) {
        say "Ooops!  ",$E->caller," had problems: $@";
    }


DESCRIPTION

This is a the autodie::exception manpage class for failures from the system command.

Presently there is no way to interrogate an autodie::exception::system object for the command, exit status, and other information you'd expect such an object to hold. The interface will be expanded to accommodate this in the future.

stringify

When stringified, autodie::exception::system objects currently use the message generated by the IPC::System::Simple manpage.


LICENSE

Copyright (C)2008 Paul Fenwick

This is free software. You may modify and/or redistribute this code under the same terms as Perl 5.10 itself, or, at your option, any later version of Perl 5.


AUTHOR

Paul Fenwick <pjf@perltraining.com.au>

Perl Diver brought to you by ScriptSolutions.com © 1997- 2024