logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Julian Mehnle <julian@mehnle.net>

perl v5.20.2                                       2015-11-28                                Courier::Error(3pm)

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.

Name

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

See Also

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

Synopsis

Exceptionhandling
           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.

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

See Also