Helios::Error - a convenience class to import all Helios::Error exception classes


Helios documentation Contained in the Helios distribution.

Index


Code Index:

NAME

Top

Helios::Error - a convenience class to import all Helios::Error exception classes

SYNOPSIS

Top

	use Helios::Error;

DESCRIPTION

Top

Use the above single line in your code instead of:

	use Helios::Error::Warning;
	use Helios::Error::Fatal;
	use Helios::Error::FatalNoRetry;
	use Helios::Error::DatabaseError;
	use Helios::Error::InvalidArg;

That way all the base Helios exceptions can be loaded by one line.

SEE ALSO

Top

Helios::Error::Fatal, 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;

use Helios::Error::Warning;
use Helios::Error::Fatal;
use Helios::Error::FatalNoRetry;

use Helios::Error::DatabaseError;
use Helios::Error::InvalidArg;

our $VERSION = '1.20';

1;

__END__;