Bug 12758: (QA follow-up) Enhance POD
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
9ec1fb4fd9
commit
c01977158c
1 changed files with 24 additions and 14 deletions
|
@ -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 <http://www.gnu.org/licenses>.
|
||||
|
||||
=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;
|
||||
|
|
Loading…
Reference in a new issue