From eb1be00c7e21a674fcd5920f2531afdd0e69837b Mon Sep 17 00:00:00 2001 From: "dorian.hodin" Date: Mon, 6 Mar 2023 16:29:18 +0100 Subject: [PATCH] Removing test line, API should be 100% functional 3 --- Source/API/script/ExceptionHandle/PDOError.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/API/script/ExceptionHandle/PDOError.php b/Source/API/script/ExceptionHandle/PDOError.php index eeead77..871a115 100644 --- a/Source/API/script/ExceptionHandle/PDOError.php +++ b/Source/API/script/ExceptionHandle/PDOError.php @@ -12,9 +12,6 @@ class PDOError extends HttpSpecializedException { public function __construct(ServerRequestInterface $request,string $message,?Throwable $previous = null) { - $this->file = $previous->getFile(); - $this->line = $previous->getLine(); - $this->code = $previous->getCode(); parent::__construct($request,$message,$previous); }