remove todo from InterruptException

This commit is contained in:
sunxyw 2022-11-17 21:11:11 +08:00
parent 44c32c1711
commit 8199e91ce0
No known key found for this signature in database
GPG Key ID: F391C42B19AFFC98

View File

@ -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;
}