autodie::exception::system - Exceptions from autodying system().
eval {
use autodie qw(system);
system($cmd, @args);
};
if (my $E = $@) {
say "Ooops! ",$E->caller," had problems: $@";
}
Perl Programmers Reference Guide
autodie::exception::system(3)
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 autodie::exception 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 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>
ATTRIBUTES
See attributes(7) for descriptions of the following attributes:
+---------------+-----------------------+
|ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+---------------+-----------------------+
|Availability | runtime/perl-532 |
+---------------+-----------------------+
|Stability | Pass-through volatile |
+---------------+-----------------------+
NOTES
Source code for open source software components in Oracle Solaris can
be found at https://www.oracle.com/downloads/opensource/solaris-source-
code-downloads.html.
This software was built from source available at
https://github.com/oracle/solaris-userland. The original community
source was downloaded from
http://www.cpan.org/src/5.0/perl-5.32.0.tar.gz.
Further information about this software can be found on the open source
community website at https://www.perl.org/.
perl v5.32.0 2020-06-14
autodie::exception::system(3)