From c01977158c40cea42e95c9beae752a68c5984e09 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 9 Nov 2022 09:58:56 -0300 Subject: [PATCH] Bug 12758: (QA follow-up) Enhance POD Signed-off-by: Tomas Cohen Arazi --- Koha/Exceptions/XSLT.pm | 38 ++++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 14 deletions(-) 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; -- 2.20.1