From 1074008f9e26fae90bc9219211e7e3921b0396d7 Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Sat, 25 Oct 2025 12:52:42 -0400 Subject: [PATCH] Remove Exception Methods due to Conflict (Override) --- src/Potter/Throwable/AbstractThrowable.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/src/Potter/Throwable/AbstractThrowable.php b/src/Potter/Throwable/AbstractThrowable.php index fdf976c..d4dd688 100644 --- a/src/Potter/Throwable/AbstractThrowable.php +++ b/src/Potter/Throwable/AbstractThrowable.php @@ -9,11 +9,5 @@ use \Exception; abstract class AbstractThrowable extends Exception implements ThrowableInterface { - abstract public function getMessage(): string; - abstract public function getCode(): int; - abstract public function getFile(): string; - abstract public function getLine(): int; - abstract public function getTrace(): array; - abstract public function getTraceAsString(): string; - abstract public function getPrevious(): ?BaseThrowable; + }