Bug 24593: Rewrite marc21_default_matching_rules to YAML
[koha.git] / Koha / Exceptions / Authentication.pm
blob74688ab6fb3aa866315a3740ec0f402708b27e72
1 package Koha::Exceptions::Authentication;
3 use Modern::Perl;
5 use Exception::Class (
7 'Koha::Exceptions::Authentication' => {
8 description => 'Something went wrong!',
9 },
10 'Koha::Exceptions::Authentication::Required' => {
11 isa => 'Koha::Exceptions::Authentication',
12 description => 'Authentication required'
14 'Koha::Exceptions::Authentication::SessionExpired' => {
15 isa => 'Koha::Exceptions::Authentication',
16 description => 'Session has been expired',