]> git.koha-community.org Git - koha.git/blob - Koha/Exceptions/Config.pm
Bug 22068: (QA follow-up) Return meaningful error codes
[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;