Helios::Error::DatabaseError - exception class for Helios job processing system to denote a


Helios documentation Contained in the Helios distribution.

Index


Code Index:

NAME

Top

Helios::Error::DatabaseError - exception class for Helios job processing system to denote a database error occurred

SYNOPSIS

Top

 use Helios::Error::DatabaseError;
 -OR-
 use Helios::Error;    # automatically uses DatabaseError and other exceptions

 =head1 DESCRIPTION

When Helios utility methods encounter a database error interacting with the Helios database, they will throw a DatabaseError exception.

This exception class was added to help helios.pl deal with losing its database connection (due to intermittent network error, database error, sunspots, whatever).

SEE ALSO

Top

Helios::Error::FatalNoRetry, Helios::Error::Warning, Error, Error::Simple

AUTHOR

Top

Andrew Johnson, <ajohnson@ittoolbox.com>

COPYRIGHT AND LICENSE

Top

WARRANTY

Top

This software comes with no warranty of any kind.


Helios documentation Contained in the Helios distribution.

package Helios::Error::DatabaseError;

use base qw(Error::Simple);

our $VERSION = '1.20';

1;
__END__;