@@ -, +, @@ --- Koha/Exceptions.pm | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/Koha/Exceptions.pm +++ a/Koha/Exceptions.pm @@ -50,6 +50,14 @@ use Exception::Class ( isa => 'Koha::Exceptions::Exception', description => 'Koha is under maintenance.' }, + 'Koha::Exceptions::File' => { + isa => 'Koha::Exceptions::Exception', + description => 'Something wrong with the given file', + }, + 'Koha::Exceptions::Parse' => { + isa => 'Koha::Exceptions::Exception', + description => 'Parsing the given input failed', + }, # Virtualshelves exceptions 'Koha::Exceptions::Virtualshelves::DuplicateObject' => { isa => 'Koha::Exceptions::DuplicateObject', --