<?php

declare(strict_types=1);

namespace ProxyManager\Exception;

use Throwable;

/**
 * Base exception class for the proxy manager
 */
interface ExceptionInterface extends Throwable
{
}
