brightnucleus/view

View on GitHub
src/View/Exception/ViewException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php declare(strict_types=1);
/**
 * Bright Nucleus View Component.
 *
 * @package   BrightNucleus\View
 * @author    Alain Schlesser <alain.schlesser@gmail.com>
 * @license   MIT
 * @link      http://www.brightnucleus.com/
 * @copyright 2016-2017 Alain Schlesser, Bright Nucleus
 */

namespace BrightNucleus\View\Exception;

use BrightNucleus\Exception\ExceptionInterface;

/**
 * Interface ViewException.
 *
 * @since   0.1.0
 *
 * @package BrightNucleus\View\Exception
 * @author  Alain Schlesser <alain.schlesser@gmail.com>
 */
interface ViewException extends ExceptionInterface
{

}