Edit File: ExceptionInterface.php
<?php declare(strict_types=1); namespace Laminas\Diactoros\Exception; use Throwable; /** * Marker interface for package-specific exceptions. */ interface ExceptionInterface extends Throwable { }
Back to File Manager