| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | <?php/** * * Cube Framework $Id$ zznEwS8sxzhx2PxPdsSqmI4X5Xjp/A8j9rC4HaQ8ZeU= * * @link        http://codecu.be/framework * @copyright   Copyright (c) 2015 CodeCube SRL * @license     http://codecu.be/framework/license Commercial License * * @version     1.4 *//** * exceptions class */namespace Cube\Exception;use Cube\Exception;class Dispatcher extends Exception{    /**     *     * construct the exception     *     * @param string     $message     * @param int        $code     * @param \Exception $previous     */    public function __construct($message = null, $code = null, $previous = null)    {        parent::__construct($message, (int)$code, $previous);    }    /**     *     * display the exception     *     * @return string     */    public function display()    {        return '<div class="alert alert-danger">[Cube\Exception\Dispatcher]<br> ' . $this->getMessage() . '</div>';    }}
 |