Exception.php 335 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. * Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
  4. * SPDX-License-Identifier: MIT
  5. */
  6. declare(strict_types=1);
  7. namespace Respect\Validation\Exceptions;
  8. use Throwable;
  9. /**
  10. * @author Andy Wendt <andy@awendt.com>
  11. * @author Henrique Moody <henriquemoody@gmail.com>
  12. */
  13. interface Exception extends Throwable
  14. {
  15. }