Bug 16699: Remove requirement from borrowernumberQueryParam
[koha.git] / Koha / Exceptions.pm
blobdd8647b567d8099c0348123e9609d2245f55ca83
1 package Koha::Exceptions;
3 use Modern::Perl;
5 use Exception::Class (
7 # General exceptions
8 'Koha::Exceptions::Exception' => {
9 description => 'Something went wrong!',
12 'Koha::Exceptions::DuplicateObject' => {
13 isa => 'Koha::Exceptions::Exception',
14 description => 'Same object already exists',
16 'Koha::Exceptions::CannotDeleteDefault' => {
17 isa => 'Koha::Exceptions::Exception',
18 description => 'The default value cannot be deleted'
20 'Koha::Exceptions::MissingParameter' => {
21 isa => 'Koha::Exceptions::Exception',
22 description => 'A required parameter is missing'
24 # Virtualshelves exceptions
25 'Koha::Exceptions::Virtualshelves::DuplicateObject' => {
26 isa => 'Koha::Exceptions::DuplicateObject',
27 description => "Duplicate shelf object",
29 'Koha::Exceptions::Virtualshelves::InvalidInviteKey' => {
30 isa => 'Koha::Exceptions::Exception',
31 description => 'Invalid key on accepting the share',
33 'Koha::Exceptions::Virtualshelves::InvalidKeyOnSharing' => {
34 isa => 'Koha::Exceptions::Exception',
35 description=> 'Invalid key on sharing a shelf',
37 'Koha::Exceptions::Virtualshelves::ShareHasExpired' => {
38 isa => 'Koha::Exceptions::Exception',
39 description=> 'Cannot share this shelf, the share has expired',
41 'Koha::Exceptions::Virtualshelves::UseDbAdminAccount' => {
42 isa => 'Koha::Exceptions::Exception',
43 description => "Invalid use of database administrator account",