2013-08-17 05:16:48 -04:00
|
|
|
<?php
|
2023-09-06 04:04:14 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2013-08-17 05:16:48 -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
|
2013-08-17 05:16:48 -04:00
|
|
|
*/
|
2015-11-28 05:06:46 -05:00
|
|
|
namespace OC\AppFramework\Middleware\Security\Exceptions;
|
2013-08-17 05:16:48 -04:00
|
|
|
|
|
|
|
|
/**
|
2015-11-28 05:06:46 -05:00
|
|
|
* Class SecurityException is the base class for security exceptions thrown by
|
|
|
|
|
* the security middleware.
|
|
|
|
|
*
|
|
|
|
|
* @package OC\AppFramework\Middleware\Security\Exceptions
|
2013-08-17 05:16:48 -04:00
|
|
|
*/
|
2020-04-10 08:19:56 -04:00
|
|
|
class SecurityException extends \Exception {
|
|
|
|
|
}
|