
CGI::MxScreen::Error - Error return codes for action callbacks

use CGI::MxScreen::Error;
sub action { # action callback
...
return CGI_MX_ABORT; # for instance
}

This module exports the return codes to use in action callbacks:
CGI_MX_OKSignals everything went fine.
CGI_MX_ABORTAn error was detected, and the action callback chain should be immediately exited. No further callbacks will be invoked.
CGI_MX_ERRORAn error was detected, but further action callbacks may still execute. The error condition is remembered and will be raised at the end of the callback chain.

The original authors are Raphael Manfredi <Raphael_Manfredi@pobox.com> and Christophe Dehaudt <Christophe.Dehaudt@teamlog.fr>.
Send bug reports, suggestions, problems or questions to Jason Purdy <Jason@Purdy.INFO>
