Test::AutoBuild::ErrorReport - details of a fatal error condition


Test-AutoBuild documentation  | view source Contained in the Test-AutoBuild distribution.

Index


NAME

Top

Test::AutoBuild::ErrorReport - details of a fatal error condition

SYNOPSIS

Top

  use Test::AutoBuild::ErrorReport;

  # Create a new platform based on the host machine's native
  # environment
  $SIG{__DIE__} = sub {
    my $error = Test::AutoBuild::ErrorReport->new($_[0]);
    $error.save();
    die $error;
  };

METHODS

Top

my $error = Test::AutoBuild::ErrorReport->new(message => $message, [trace => $stacktrace,]);

Creates a new error report with the error message passed via the message parameter. The optional stacktrace parameter can provide a call / stack trace, and if omitted will be filled in automatically using Carp::longmess. The optional engine parameter can be used to pass in an instance of the Test::AutoBuild class associated with the error.

AUTHORS

Top

Daniel Berrange <dan@berrange.com>, Dennis Gregorovic <dgregorovic@alum.mit.edu>

COPYRIGHT

Top

SEE ALSO

Top

perl(1), Test::AutoBuild, Test::AutoBuild::Runtime


Test-AutoBuild documentation  | view source Contained in the Test-AutoBuild distribution.