ExceptionInterface.php 141 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace Laminas\Stdlib\Exception;
  4. /**
  5. * Exception marker interface
  6. */
  7. interface ExceptionInterface
  8. {
  9. }