InvalidSignatureException.php 478 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
  5. * SPDX-License-Identifier: AGPL-3.0-only
  6. */
  7. namespace OC\IntegrityCheck\Exceptions;
  8. /**
  9. * Class InvalidSignatureException is thrown in case the signature of the hashes
  10. * cannot be properly validated. This indicates that either files
  11. *
  12. * @package OC\IntegrityCheck\Exceptions
  13. */
  14. class InvalidSignatureException extends \Exception {
  15. }