Parse::StackTrace::Exceptions - Exceptions that can be thrown by


Parse-StackTrace documentation Contained in the Parse-StackTrace distribution.

Index


Code Index:

NAME

Top

Parse::StackTrace::Exceptions - Exceptions that can be thrown by Parse::StackTrace modules

DESCRIPTION

Top

There are no public methods that can throw an exception, so you generally don't need to worry about this.


Parse-StackTrace documentation Contained in the Parse-StackTrace distribution.

package Parse::StackTrace::Exceptions;
use strict;
use Exception::Class (
    'Parse::StackTrace::Exception',
    
    'Parse::StackTrace::Exception::NotAFrame' =>
    { isa => 'Parse::StackTrace::Exception' },

);

1;

__END__