ExpiredSignedUriException.php 629 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\HttpFoundation\Exception;
  11. use Symfony\Component\HttpKernel\Attribute\WithHttpStatus;
  12. /**
  13. * @author Kevin Bond <kevinbond@gmail.com>
  14. */
  15. #[WithHttpStatus(403)]
  16. final class ExpiredSignedUriException extends SignedUriException
  17. {
  18. /**
  19. * @internal
  20. */
  21. public function __construct()
  22. {
  23. parent::__construct('The URI has expired.');
  24. }
  25. }