ZBlogException::ParseException PHP Метод

ParseException() публичный Метод

解析异常信息
public ParseException ( $exception )
$exception
    public function ParseException($exception)
    {
        $this->message = $exception->getMessage();
        $this->messagefull = $exception->getMessage() . ' (set_exception_handler) ';
        $this->type = $exception->getCode();
        $this->file = $exception->getFile();
        $this->line = $exception->getLine();
        if (self::$error_file !== null) {
            $this->file = self::$error_file;
        }
        if (self::$error_line !== null) {
            $this->line = self::$error_line;
        }
    }