The Framework Code

class/framework/exception/internalerror.php

File List

<?php
/**
 * Exception Class for when there is an internal error of some kind
 *
 * @author Lindsay Marshall <lindsay.marshall@ncl.ac.uk>
 * @copyright 2020 Newcastle University
 * @package Framework
 * @subpackage Exceptions
 */
    namespace Framework\Exception;

/**
 * Internal error exception class
 */
    class InternalError extends \Exception
    {
    }
?>