
Helios::Error::BaseError - base exception class for Helios services

use Helios::Error::BaseError; -OR- use Helios::Error; # automatically loads and imports this and other exceptions

Helios::Error::BaseError is the base class for all the exception classes in the Helios::Error hierarchy.
You can distinguish between Helios errors and other exceptions attempting to catch Helios::Error::BaseError rather than each specific class in the Helios::Error hierarchy.
Helios::Error::BaseError is actually a subclass of Error::Simple from the Error CPAN distribution. You can use the try/catch features of the Error module, the Perl built-in eval syntax, or another module with exception handling features to utilize Helios::Error::BaseError and its subclasses.

Helios::Error, Error, Error::Simple

Andrew Johnson, <lajandy at cpan dot org>

Copyright (C) 2011 by Andrew Johnson.
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.