This allows logging the `$description`.
Resolves #3944
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @package WoltLabSuite\Core\System\Exception
*/
-class SystemException extends LoggedException
+class SystemException extends LoggedException implements IExtraInformationException
{
/**
* error description
return $this->description;
}
+ /**
+ * @inheritDoc
+ */
+ public function getExtraInformation()
+ {
+ return [
+ ['Description', $this->description],
+ ];
+ }
+
/**
* @inheritDoc
*/