GBException::formatHtml PHP Method

formatHtml() public static method

Convenience method equivalent to calling self::format with $html=true.
See also: format()
See also: formatPlain()
public static formatHtml ( Exception $e, $includingTrace = true, $skip = null, $context_lines = 2 ) : string
$e Exception
return string
    public static function formatHtml(Exception $e, $includingTrace = true, $skip = null, $context_lines = 2)
    {
        return self::format($e, $includingTrace, true, $skip, $context_lines);
    }