Dhii/output-renderer-interface

View on GitHub
src/Exception/RendererExceptionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dhii\Output\Exception;

use Dhii\Output\RendererAwareInterface;
use Dhii\Exception\ThrowableInterface;

/**
 * An exception that occurs in relation to a renderer.
 *
 * @since 0.1
 */
interface RendererExceptionInterface extends
        ThrowableInterface,
        RendererAwareInterface
{
}