0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-14 16:33:21 +00:00
nextcloud_server/lib/private/AppFramework/Middleware/Security/Exceptions/SecurityException.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
491 B
PHP
Raw Normal View History

2013-08-17 09:16:48 +00:00
<?php
declare(strict_types=1);
2013-08-17 09:16:48 +00: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 09:16:48 +00:00
*/
namespace OC\AppFramework\Middleware\Security\Exceptions;
2013-08-17 09:16:48 +00:00
/**
* Class SecurityException is the base class for security exceptions thrown by
* the security middleware.
*
* @package OC\AppFramework\Middleware\Security\Exceptions
2013-08-17 09:16:48 +00:00
*/
class SecurityException extends \Exception {
}