| Helios documentation | Contained in the Helios distribution. |
Helios::Error - a convenience class to import all Helios::Error exception classes
use Helios::Error;
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.
Helios::Error::Fatal, Helios::Error::Warning, Error, Error::Simple
Andrew Johnson, <ajohnson@ittoolbox.com>
Copyright (C) 2007-8 by CEB Toolbox, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.0 or, at your option, any later version of Perl 5 you may have available.
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__;