Bugzilla – Attachment 130273 Details for
Bug 30007
Make ->anonymize methods throw an exception if AnonymousPatron is not set
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30007: Add Koha::Exceptions::SysPref
Bug-30007-Add-KohaExceptionsSysPref.patch (text/plain), 2.08 KB, created by
Martin Renvoize (ashimema)
on 2022-02-08 09:48:19 UTC
(
hide
)
Description:
Bug 30007: Add Koha::Exceptions::SysPref
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2022-02-08 09:48:19 UTC
Size:
2.08 KB
patch
obsolete
>From b4542a9ddd37a4bff76db9dcfe1242dd8995dde2 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Thu, 3 Feb 2022 16:22:49 -0300 >Subject: [PATCH] Bug 30007: Add Koha::Exceptions::SysPref > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >Signed-off-by: David Nind <david@davidnind.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> > >https://bugs.koha-community.org/show_bug.cgi?id=3007 >--- > Koha/Exceptions/SysPref.pm | 49 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 49 insertions(+) > create mode 100644 Koha/Exceptions/SysPref.pm > >diff --git a/Koha/Exceptions/SysPref.pm b/Koha/Exceptions/SysPref.pm >new file mode 100644 >index 0000000000..2ba89b8bee >--- /dev/null >+++ b/Koha/Exceptions/SysPref.pm >@@ -0,0 +1,49 @@ >+package Koha::Exceptions::SysPref; >+ >+# 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 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, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Koha::Exception; >+ >+use Exception::Class ( >+ 'Koha::Exceptions::SysPref' => { >+ isa => 'Koha::Exception', >+ }, >+ 'Koha::Exceptions::SysPref::NotSet' => { >+ isa => 'Koha::Exceptions::SysPref', >+ description => 'Required syspref is not set', >+ fields => ['syspref'] >+ } >+); >+ >+=head1 NAME >+ >+Koha::Exceptions::SysPref - Base class for syspref-related exceptions >+ >+=head1 Exceptions >+ >+=head2 Koha::Exceptions::SysPref >+ >+Generic syspref-related exception >+ >+=head2 Koha::Exceptions::SysPref::NotSet >+ >+Exception to be used when a required syspref is not set. >+ >+=cut >+ >+1; >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 30007
:
130163
|
130164
|
130165
|
130175
|
130176
|
130177
|
130272
| 130273 |
130274
|
131239
|
131298