package Class::Framework::Exception::NoSuchFactoryHandler; # $Id: NoSuchHandler.pm 13644 2007-10-18 21:27:45Z gr $ use warnings; use strict; our $VERSION = '0.01'; use base 'Class::Framework::Exception'; __PACKAGE__->mk_accessors(qw(handler_type spec)); use constant default_message => 'Factory lookup failure for handler type [%s], spec [%s]'; use constant PROPERTIES => ( qw/handler_type spec/ ); sub init { my $self = shift; # because we call SUPER::init(), which uses caller() to set # package, filename and line of the exception, *plus* we don't want # to report the abstract method that threw this exception itself, # rather we want to report its caller, i.e. the one that called the # abstract method. So we use +2. local $Error::Depth = $Error::Depth + 2; $self->SUPER::init(@_); } 1; __END__ =head1 NAME Class::Framework - large-scale OOP application support =head1 SYNOPSIS None yet (see below). =head1 DESCRIPTION None yet. This is an early release; fully functional, but undocumented. The next release will have more documentation. =head1 TAGS If you talk about this module in blogs, on del.icio.us or anywhere else, please use the C tag. =head1 BUGS AND LIMITATIONS No bugs have been reported. Please report any bugs or feature requests to C, or through the web interface at L. =head1 INSTALLATION See perlmodinstall for information and options on installing Perl modules. =head1 AVAILABILITY The latest version of this module is available from the Comprehensive Perl Archive Network (CPAN). Visit to find a CPAN site near you. Or see . =head1 AUTHORS Marcel GrEnauer, C<< >> Florian Helmberger C<< >> Achim Adam C<< >> Mark Hofstetter C<< >> Heinz Ekker C<< >> =head1 COPYRIGHT AND LICENSE Copyright 2007 by Marcel GrEnauer This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut