From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

NAME

Courier::Error - Exception class for Perl modules related to the Courier MTA

SYNOPSIS

Exception handling

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

Deriving new exception classes

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.

SEE ALSO

For AVAILABILITY, SUPPORT, and LICENSE information, see Courier::Filter::Overview.

AUTHOR

Julian Mehnle <julian@mehnle.net>