The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

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

SYNOPSIS

    eval {
        use autodie;

        system($cmd, @args);

    };

    if (my $E = $@) {
        say "Ooops!  ",$E->caller," had problems: $@";
    }

DESCRIPTION

NOTE! This is BETA code. It is NOT the final release. Implementation and interface may change! This is especially true for this class.

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

stringify

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

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>