]> git.koha-community.org Git - koha.git/blob - Koha/Exceptions/Exception.pm
Bug 20589: fix QueryBuilder tests
[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;