芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/bd.mgaplay.com.br/vendor/slim/slim/Slim/Error/Renderers/PlainTextErrorRenderer.php
getErrorTitle($exception)}\n"; if ($displayErrorDetails) { $text .= $this->formatExceptionFragment($exception); while ($exception = $exception->getPrevious()) { $text .= "\nPrevious Error:\n"; $text .= $this->formatExceptionFragment($exception); } } return $text; } /** * @param Throwable $exception * @return string */ private function formatExceptionFragment(Throwable $exception): string { $text = sprintf("Type: %s\n", get_class($exception)); $code = $exception->getCode(); if ($code !== null) { $text .= sprintf("Code: %s\n", $code); } $message = $exception->getMessage(); if ($message !== null) { $text .= sprintf("Message: %s\n", htmlentities($message)); } $file = $exception->getFile(); if ($file !== null) { $text .= sprintf("File: %s\n", $file); } $line = $exception->getLine(); if ($line !== null) { $text .= sprintf("Line: %s\n", $line); } $trace = $exception->getTraceAsString(); if ($trace !== null) { $text .= sprintf('Trace: %s', $trace); } return $text; } }