ExceptionInterface.php 135 B

12345678910
  1. <?php
  2. declare(strict_types = 1);
  3. namespace BaconQrCode\Exception;
  4. use Throwable;
  5. interface ExceptionInterface extends Throwable
  6. {
  7. }