<?php

declare(strict_types=1);

namespace Laminas\HttpHandlerRunner\Exception;

use Throwable;

/**
 * Marker interface for package exceptions.
 */
interface ExceptionInterface extends Throwable
{
}
