Bug 22521: DBRev 18.12.00.055
[koha.git] / Koha / Exceptions / Config.pm
1 package Koha::Exceptions::Config;
2
3 use Modern::Perl;
4
5 use Exception::Class (
6
7     'Koha::Exceptions::Config' => {
8         description => 'Something went wrong!',
9     },
10     'Koha::Exceptions::Config::MissingEntry' => {
11         isa => 'Koha::Exceptions::Config',
12         description => 'The required entry is missing in the configuration file'
13     }
14 );
15
16 1;