DragonByte Tech
Well-known member
Function calls like
Implies that
$exceptionMessage = $this->adjustExceptionMessage($e->getMessage(), $e);
with the code
PHP:
protected function adjustExceptionMessage($message, $e)
{
return $message;
}
Implies that
XF\Error
should be extendable, but it isn't:
PHP:
$container['error'] = function ()
{
return new Error($this);
};
Upvote
0