From c58d8159d7bdee93a67a917e16b750fe99df9f99 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Tue, 31 May 2016 10:48:14 +0200 Subject: Create session tokens for apache auth users --- .../Exceptions/PasswordlessTokenException.php | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/private/Authentication/Exceptions/PasswordlessTokenException.php (limited to 'lib/private/Authentication/Exceptions') diff --git a/lib/private/Authentication/Exceptions/PasswordlessTokenException.php b/lib/private/Authentication/Exceptions/PasswordlessTokenException.php new file mode 100644 index 00000000000..dbe0ee8fbca --- /dev/null +++ b/lib/private/Authentication/Exceptions/PasswordlessTokenException.php @@ -0,0 +1,29 @@ + + * + * @copyright Copyright (c) 2016, ownCloud, Inc. + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * 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, version 3, + * along with this program. If not, see + * + */ + +namespace OC\Authentication\Exceptions; + +use Exception; + +class PasswordlessTokenException extends Exception { + +} -- cgit v1.2.3