mirror of
https://github.com/nextcloud/server.git
synced 2025-02-12 03:59:16 +00:00
14 lines
273 B
PHP
14 lines
273 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\Authentication\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* @since 12
|
|
*/
|
|
class CredentialsUnavailableException extends Exception {
|
|
}
|