SecurityException.php 491 B

123456789101112131415161718
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  6. * SPDX-License-Identifier: AGPL-3.0-only
  7. */
  8. namespace OC\AppFramework\Middleware\Security\Exceptions;
  9. /**
  10. * Class SecurityException is the base class for security exceptions thrown by
  11. * the security middleware.
  12. *
  13. * @package OC\AppFramework\Middleware\Security\Exceptions
  14. */
  15. class SecurityException extends \Exception {
  16. }