From 8199e91ce07b4ebdae42ddd5863fd5bca81c72c0 Mon Sep 17 00:00:00 2001 From: sunxyw Date: Thu, 17 Nov 2022 21:11:11 +0800 Subject: [PATCH] remove todo from InterruptException --- src/ZM/Exception/InterruptException.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ZM/Exception/InterruptException.php b/src/ZM/Exception/InterruptException.php index fd8bb65b..904404f3 100644 --- a/src/ZM/Exception/InterruptException.php +++ b/src/ZM/Exception/InterruptException.php @@ -10,7 +10,6 @@ class InterruptException extends ZMException public function __construct($return_var = null, $message = '', $code = 0, \Throwable $previous = null) { - // TODO: change this to a better error message parent::__construct($message, '', $code, $previous); $this->return_var = $return_var; }