diff --git a/library/log4php/LoggerThrowableInformation.php b/library/log4php/LoggerThrowableInformation.php deleted file mode 100644 --- a/library/log4php/LoggerThrowableInformation.php +++ /dev/null @@ -1,68 +0,0 @@ -throwable = $throwable; - } - - /** - * Return source exception - * - * @return Exception - */ - public function getThrowable() { - return $this->throwable; - } - - /** - * @desc Returns string representation of throwable - * - * @return array - */ - public function getStringRepresentation() { - if (!is_array($this->throwableArray)) { - $renderer = new LoggerRendererException(); - - $this->throwableArray = explode("\n", $renderer->render($this->throwable)); - } - - return $this->throwableArray; - } -}