Tree::Simple::View::Exceptions - A set of exceptions for Tree::Simple::View


Tree-Simple-View documentation Contained in the Tree-Simple-View distribution.

Index


Code Index:

NAME

Top

Tree::Simple::View::Exceptions - A set of exceptions for Tree::Simple::View

SYNOPSIS

Top

  use Tree::Simple::View::Exceptions;

DESCRIPTION

Top

This just creates and loads a few exceptions for use by the Tree::Simple::View classes. Nothing else to see really.

EXCEPTIONS

Top

Tree::Simple::View::InsufficientArguments
Tree::Simple::View::AbstractMethod
Tree::Simple::View::AbstractClass
Tree::Simple::View::CompilationFailed

BUGS

Top

None that I am aware of. Of course, if you find a bug, let me know, and I will be sure to fix it.

CODE COVERAGE

Top

See the CODE COVERAGE section of Tree::Simple::View for details.

SEE ALSO

Top

Class::Throwable

AUTHOR

Top

stevan little, <stevan@iinteractive.com>

COPYRIGHT AND LICENSE

Top


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__