Bug 27947: Add cancellation reason to article request
[koha.git] / Koha / Exceptions / ArticleRequests.pm
1 package Koha::Exceptions::ArticleRequests;
2
3 use Modern::Perl;
4
5 use Exception::Class (
6
7     'Koha::Exceptions::ArticleRequests' => {
8         description => 'Something went wrong!',
9     },
10     'Koha::Exceptions::ArticleRequests::FailedCancel' => {
11         isa => 'Koha::Exceptions::ArticleRequests',
12         description => 'Failed to cancel article request'
13     }
14
15 );
16
17 1;