| Tree-Simple-View documentation | Contained in the Tree-Simple-View distribution. |
Tree::Simple::View::Exceptions - A set of exceptions for Tree::Simple::View
use Tree::Simple::View::Exceptions;
This just creates and loads a few exceptions for use by the Tree::Simple::View classes. Nothing else to see really.
None that I am aware of. Of course, if you find a bug, let me know, and I will be sure to fix it.
See the CODE COVERAGE section of Tree::Simple::View for details.
stevan little, <stevan@iinteractive.com>
Copyright 2004-2008 by Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Tree-Simple-View documentation | Contained in the Tree-Simple-View distribution. |
package Tree::Simple::View::Exceptions; use strict; use warnings; our $VERSION = '0.01'; use Class::Throwable qw( Tree::Simple::View::InsufficientArguments Tree::Simple::View::AbstractMethod Tree::Simple::View::AbstractClass Tree::Simple::View::CompilationFailed ); 1; __END__