Bug 23185: Realistic POD for Koha::Objects->search
[srvgit] / Koha / Exceptions.pm
index dd8647b..cf56b22 100644 (file)
@@ -1,18 +1,23 @@
 package Koha::Exceptions;
 
 use Modern::Perl;
+use Koha::Exceptions::Exception;
 
 use Exception::Class (
 
-    # General exceptions
-    'Koha::Exceptions::Exception' => {
-        description => 'Something went wrong!',
+    'Koha::Exceptions::BadParameter' => {
+        isa => 'Koha::Exceptions::Exception',
+        description => 'A bad parameter was given',
+        fields => ['parameter'],
     },
-
     'Koha::Exceptions::DuplicateObject' => {
         isa => 'Koha::Exceptions::Exception',
         description => 'Same object already exists',
     },
+    'Koha::Exceptions::ObjectNotFound' => {
+        isa => 'Koha::Exceptions::Exception',
+        description => 'The required object doesn\'t exist',
+    },
     'Koha::Exceptions::CannotDeleteDefault' => {
         isa => 'Koha::Exceptions::Exception',
         description => 'The default value cannot be deleted'
@@ -21,6 +26,30 @@ use Exception::Class (
         isa => 'Koha::Exceptions::Exception',
         description => 'A required parameter is missing'
     },
+    'Koha::Exceptions::ParameterTooHigh' => {
+        isa => 'Koha::Exceptions::Exception',
+        description => 'A passed parameter value is too high'
+    },
+    'Koha::Exceptions::NoChanges' => {
+        isa => 'Koha::Exceptions::Exception',
+        description => 'No changes were made',
+    },
+    'Koha::Exceptions::WrongParameter' => {
+        isa => 'Koha::Exceptions::Exception',
+        description => 'One or more parameters are wrong',
+    },
+    'Koha::Exceptions::NoPermission' => {
+        isa => 'Koha::Exceptions::Exception',
+        description => 'You do not have permission for this action',
+    },
+    'Koha::Exceptions::CannotAddLibraryLimit' => {
+        isa => 'Koha::Exceptions::Exception',
+        description => 'General problem adding a library limit'
+    },
+    'Koha::Exceptions::UnderMaintenance' => {
+        isa => 'Koha::Exceptions::Exception',
+        description => 'Koha is under maintenance.'
+    },
     # Virtualshelves exceptions
     'Koha::Exceptions::Virtualshelves::DuplicateObject' => {
         isa => 'Koha::Exceptions::DuplicateObject',