diff --git a/Koha/Exceptions/XSLT.pm b/Koha/Exceptions/XSLT.pm index ecd0b1f829..c0addeef65 100644 --- a/Koha/Exceptions/XSLT.pm +++ b/Koha/Exceptions/XSLT.pm @@ -17,20 +17,6 @@ package Koha::Exceptions::XSLT; # You should have received a copy of the GNU General Public License # along with Koha; if not, see . -=head1 NAME - -Koha::Exceptions::XSLT; - -=head1 SYNOPSIS - -Koha::Exceptions::XSLT::MissingFilename->throw; - -=head1 DESCRIPTION - -Defines a few exceptions for Koha::XSLT:: modules - -=cut - use Modern::Perl; use Koha::Exception; use Exception::Class ( @@ -47,4 +33,28 @@ use Exception::Class ( }, ); +=head1 NAME + +Koha::Exceptions::XSLT - Base class for XSLT exceptions + +=head1 DESCRIPTION + +Defines a few exceptions for Koha::XSLT:: modules + +=head1 Exceptions + +=head2 Koha::Exceptions::XSLT + +Generic XSLT exception. + +=head2 Koha::Exceptions::XSLT::MissingFilename + +Missing filename exception. + +=head2 Koha::Exceptions::XSLT::FetchFailed + +Failed to fetch the XSLT. + +=cut + 1;