aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Authentication/Exceptions
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-05-15 09:50:28 -0500
committerGitHub <noreply@github.com>2017-05-15 09:50:28 -0500
commitd8f13dfe74e1929eda87d97c50e0509635017e9f (patch)
treec4f89e13d3403907fbafdfbdc67506e09a28b0f0 /lib/public/Authentication/Exceptions
parent8c5062794f3abc157e48af2cf4bc3c0dfe570cbe (diff)
parent9d920ef9b24facaedd56e0fc8d2af992e21c42f3 (diff)
downloadnextcloud-server-d8f13dfe74e1929eda87d97c50e0509635017e9f.tar.gz
nextcloud-server-d8f13dfe74e1929eda87d97c50e0509635017e9f.zip
Merge pull request #4847 from nextcloud/throw-exception-if-password-not-avail
Throws exception if password not available
Diffstat (limited to 'lib/public/Authentication/Exceptions')
-rw-r--r--lib/public/Authentication/Exceptions/PasswordUnavailableException.php34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/public/Authentication/Exceptions/PasswordUnavailableException.php b/lib/public/Authentication/Exceptions/PasswordUnavailableException.php
new file mode 100644
index 00000000000..f69b690266d
--- /dev/null
+++ b/lib/public/Authentication/Exceptions/PasswordUnavailableException.php
@@ -0,0 +1,34 @@
+<?php
+
+/**
+ * @copyright 2017 Morris Jobke <hey@morrisjobke.de>
+ *
+ * @author 2017 Morris Jobke <hey@morrisjobke.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 OCP\Authentication\Exceptions;
+
+use Exception;
+
+/**
+ * @since 12
+ */
+class PasswordUnavailableException extends Exception {
+
+}