for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dazzle\Throwable;
abstract class ExceptionHandler
{
/**
* @var string
*/
protected static $handler = '\Dazzle\Throwable\Exception::toString';
* Invoke default Exception Handler.
*
* @param \Error|\Exception $ex
public static function handleException($ex)
echo call_user_func(static::$handler, $ex);
}