mirror of
https://github.com/filp/whoops.git
synced 2026-08-20 22:50:04 +00:00
15 lines
353 B
PHP
15 lines
353 B
PHP
<?php
|
|
/**
|
|
* Whoops - php errors for cool kids
|
|
* @author Filipe Dobreira <http://github.com/filp>
|
|
*/
|
|
|
|
namespace Whoops\Exception;
|
|
use ErrorException as BaseErrorException;
|
|
|
|
/**
|
|
* Wraps ErrorException; mostly used for typing (at least now)
|
|
* to easily cleanup the stack trace of redundant info.
|
|
*/
|
|
class ErrorException extends BaseErrorException {}
|