2016-04-25 08:10:55 -04:00
|
|
|
<?php
|
2020-05-27 03:21:47 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2016-04-25 08:10:55 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2016-04-25 08:10:55 -04:00
|
|
|
*/
|
|
|
|
|
namespace OC\Authentication\Exceptions;
|
|
|
|
|
|
2023-10-23 04:18:20 -04:00
|
|
|
/**
|
|
|
|
|
* @deprecated 28.0.0 use OCP version instead
|
|
|
|
|
*/
|
|
|
|
|
class InvalidTokenException extends \OCP\Authentication\Exceptions\InvalidTokenException {
|
2016-04-25 08:10:55 -04:00
|
|
|
}
|