Files
zhamao-framework/src/ZM/Exception/InterruptException.php
sunxyw 8ff7da4d23 PHP80 小修 (#187)
* migrate-php80

fix styles
fix static analyse

* fix some bugs
2022-12-19 20:22:47 +08:00

14 lines
294 B
PHP

<?php
declare(strict_types=1);
namespace ZM\Exception;
class InterruptException extends ZMException
{
public function __construct(public $return_var = null, $message = '', $code = 0, \Throwable $previous = null)
{
parent::__construct($message, '', $code, $previous);
}
}