Add ApiInvalidParamException class.

This commit is contained in:
Amast 2019-10-31 16:18:14 +08:00
parent 8d59abf78c
commit 0bb1ea384a

View File

@ -0,0 +1,13 @@
<?php
namespace PdToolKit\Exceptions;
use Throwable;
class ApiInvalidParamException extends ApiException
{
public function __construct($message, Throwable $previous = null)
{
parent::__construct($message, 400400, $previous);
}
}