diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-11-23 20:54:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-23 20:54:31 +0100 |
commit | 38658da12b3bd4df273e64f3a74e566ffbf9e1e9 (patch) | |
tree | 3152fe98d44acbf54d7fa40ad4e8ba9e4134414b /apps/user_ldap/lib/Exceptions/ConstraintViolationException.php | |
parent | 56c926bc8b5b7e08dd0db32e70af132506735ca3 (diff) | |
parent | 4c5e7d270ae81c341195d47055aadabbb761b84c (diff) | |
download | nextcloud-server-38658da12b3bd4df273e64f3a74e566ffbf9e1e9.tar.gz nextcloud-server-38658da12b3bd4df273e64f3a74e566ffbf9e1e9.zip |
Merge pull request #2286 from nextcloud/ldap_password_pr-1
LDAP PR with tests
Diffstat (limited to 'apps/user_ldap/lib/Exceptions/ConstraintViolationException.php')
-rw-r--r-- | apps/user_ldap/lib/Exceptions/ConstraintViolationException.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php b/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php new file mode 100644 index 00000000000..997b01b2d4e --- /dev/null +++ b/apps/user_ldap/lib/Exceptions/ConstraintViolationException.php @@ -0,0 +1,26 @@ +<?php +/** + * @copyright Copyright (c) 2016 Roger Szabo <roger.szabo@web.de> + * + * @author Roger Szabo <roger.szabo@web.de> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ + +namespace OCA\User_LDAP\Exceptions; + +class ConstraintViolationException extends \Exception {} |