|
NAMELuka::Exceptions - exception classesSYNOPSISuse Luka::Exceptions; use Error qw(:try); push @Exception::Class::Base::ISA, 'Error' unless Exception::Class::Base->isa('Error'); try { # some external library that dies unexpectedly do_something(); } catch Error with { # this will catch errors of any type $e = shift; throw Luka::Exception::Program( error => $e, show_trace => 1 ); }; DESCRIPTIONThis class provides custom exceptions for Luka.EXCEPTION typesThere are three exceptions that can be thrown:
EXCEPTION attributesAll classes have the same fields: error, context, args, path, severity, conf, show_trace.errorError string thrown by library, in perl $! or $@.contextExplanation of exception that ought to out error in context for the person dealing with it who doesn't necessarily know much about the script. For example, if an FTP connection fails we should report:FTP error: geting SpecialData feed from Someone failed. and not anything similar to: FTP connection failed. Why? Because to someone dealing with the problem, but not familiar with the application, FTP connection failed says nothing new - usualy, that info is already present in the library error, which should always be in the error field of the exception thrown. So, instead of replicating information provided by the machine, give information known only to you, developer:
argsArguments that might be needed for resolving the reasons for failure: either those provided to the subroutine from which exception is thrown or those supplied to the external library whose error we're dealing with.show_traceIf assigned value 1, this option will include stack trace.severitySeverity level of the error thrown. See TODO section in Luka.idId of the error thrown. Can be used as a namespace for tracking errors and linking to appropriate documentation.confConfiguration used for Luka system. Used for testing only.SEE ALSOException::Class, LukaAUTHORToni Prug <toni@irational.org>COPYRIGHTCopyright (c) 2006. Toni Prug. All rights reserved.This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA See <http://www.gnu.org/licenses/gpl.html>
Visit the GSP FreeBSD Man Page Interface. |