Bug 32030: Link external packages with agreements
[koha-ffzg.git] / Koha / Exceptions / Password.pm
index bffafdb..803e8a7 100644 (file)
@@ -2,25 +2,27 @@ package Koha::Exceptions::Password;
 
 # This file is part of Koha.
 #
-# Koha is free software; you can redistribute it and/or modify it under the
-# terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 3 of the License, or (at your option) any later
-# version.
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
 #
-# Koha is distributed in the hope that it will be useful, but WITHOUT ANY
-# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
-# A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along
-# with Koha; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
 use Modern::Perl;
 
+use Koha::Exception;
+
 use Exception::Class (
 
     'Koha::Exceptions::Password' => {
-        description => 'Something went wrong!',
+        isa => 'Koha::Exception',
     },
     'Koha::Exceptions::Password::Invalid' => {
         isa => 'Koha::Exceptions::Password',
@@ -35,9 +37,17 @@ use Exception::Class (
         isa => 'Koha::Exceptions::Password',
         description => 'Password is too weak'
     },
-    'Koha::Exceptions::Password::TrailingWhitespaces' => {
+    'Koha::Exceptions::Password::WhitespaceCharacters' => {
+        isa => 'Koha::Exceptions::Password',
+        description => 'Password contains leading/trailing whitespace character(s)'
+    },
+    'Koha::Exceptions::Password::Plugin' => {
+        isa => 'Koha::Exceptions::Password',
+        description => 'The password was rejected by a plugin'
+    },
+    'Koha::Exceptions::Password::NoCategoryProvided' => {
         isa => 'Koha::Exceptions::Password',
-        description => 'Password contains trailing whitespace(s)'
+        description => 'You must provide a patron\'s category to validate password\'s strength and length'
     }
 );
 
@@ -77,9 +87,9 @@ Password is too short.
 
 Password is too weak.
 
-=head2 Koha::Exceptions::Password::TrailingWhitespaces
+=head2 Koha::Exceptions::Password::WhitespaceCharacters
 
-Password contains trailing spaces, which is forbidden.
+Password contains leading/trailing spaces, which is forbidden.
 
 =head1 Class methods