| WWW-USF-Directory documentation | view source | Contained in the WWW-USF-Directory distribution. |
WWW::USF::Directory::Exception - Basic exception object for WWW::USF::Directory
Version 0.003
use WWW::USF::Directory::Exception;
# Throw a generic error message
WWW::USF::Directory::Exception->throw(
message => 'This is some error message',
);
This is a basic exception class for the WWW::USF::Directory library.
Required. This is a string that contains the error message for the exception.
This method is used to return a string that will be given when this object is used in a string context. Classes inheriting from this class are welcome to override this method. By default (as in, in this class) this method simply returns the contents of the message attribute.
my $error = WWW::USF::Directory::Exception->new(message => 'Error message'); print $error; # Prints "Error message"
This method will take a HASH as the argument and will pass this HASH to the
constructor of the class, and then throw the newly constructed object. An extra
option that will be stripped is class. This option will actually construct a
different class, where this class is in the package space below the specified
class.
eval {
WWW::USF::Directory->throw(
class => 'ClassName',
message => 'An error occurred',
);
};
print ref $@; # Prints WWW::USF::Directory::Exception::ClassName
Douglas Christopher Wilson, <doug at somethingdoug.com>
Please report any bugs or feature requests to bug-www-usf-directory at rt.cpan.org,
or through the web interface at
http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW::USF::Directory.
I will be notified, and then you'll automatically be notified of progress on
your bug as I make changes.
I highly encourage the submission of bugs and enhancements to my modules.
Copyright 2010 Douglas Christopher Wilson.
This program is free software; you can redistribute it and/or modify it under the terms of either:
| WWW-USF-Directory documentation | view source | Contained in the WWW-USF-Directory distribution. |