Dhii/invoker-interface

View on GitHub
src/Exception/CommandInvokerExceptionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dhii\Invocation\Exception;

use Dhii\Invocation\CommandInvokerAwareInterface;
use Dhii\Exception\ThrowableInterface;

/**
 * An exception related to a command invoker.
 *
 * @since [*next-version*]
 */
interface CommandInvokerExceptionInterface extends
        CommandInvokerAwareInterface,
        ThrowableInterface
{
}