Bug 22521: DBRev 18.12.00.055
[koha.git] / Koha / Exceptions / Exception.pm
1 package Koha::Exceptions::Exception;
2
3 use Modern::Perl;
4
5 # Looks like this class should be more Koha::Exception::Base;
6 use Exception::Class (
7     'Koha::Exceptions::Exception' => {
8         description => "Something went wrong!"
9     },
10 );
11
12 1;