Files
zhamao-framework/src/ZM/Exception/InvalidArgumentException.php

15 lines
325 B
PHP
Raw Normal View History

2022-08-13 17:00:29 +08:00
<?php
declare(strict_types=1);
namespace ZM\Exception;
class InvalidArgumentException extends ZMException
{
public function __construct($message = '', $code = 0, \Throwable $previous = null)
2022-08-13 17:00:29 +08:00
{
2022-11-15 21:48:46 +08:00
// TODO: change this to a better error message
parent::__construct($message, '', 74, $previous);
2022-08-13 17:00:29 +08:00
}
}