Courier::Error(3) Exception class for Perl modules related to the Courier MTA

SYNOPSIS

Exception handling

    use Error qw(:try);
    use Courier::Error;
    
    try {
        ...
        throw Courier::Error($error_message) if $error_condition;
        ...
    }
    catch Courier::Error with {
        ...
    };
    # See "Error" for more exception handling syntax.

Deriving new exception classes

    package Courier::Error::My;
    use base qw(Courier::Error);

DESCRIPTION

This class is a simple exception class for Perl modules related to the Courier MTA. See Error for detailed instructions on how to use it.

AUTHOR

Julian Mehnle <[email protected]>