Bug 19444: Display error message for auto_account_expired
[koha.git] / Koha / Exceptions / Object.pm
blob2ffa1ec851e2b9fb4557bfd53da3ebc8ee0e48f3
1 package Koha::Exceptions::Object;
3 use Modern::Perl;
5 use Exception::Class (
7 'Koha::Exceptions::Object' => {
8 description => 'Something went wrong!',
9 },
10 'Koha::Exceptions::Object::MethodNotFound' => {
11 isa => 'Koha::Exceptions::Object',
12 description => "Invalid method",
14 'Koha::Exceptions::Object::PropertyNotFound' => {
15 isa => 'Koha::Exceptions::Object',
16 description => "Invalid property",
18 'Koha::Exceptions::Object::MethodNotCoveredByTests' => {
19 isa => 'Koha::Exceptions::Object',
20 description => "Method not covered by tests",