Files
HRM-System/vendor/coingate/coingate-php/lib/Exception/Api/BadRequest.php
2026-04-13 08:19:53 +08:00

13 lines
201 B
PHP

<?php
namespace CoinGate\Exception\Api;
use CoinGate\Exception\ApiErrorException;
/**
* BadRequest is thrown when HTTP Status: 400 (Bad Request).
*/
class BadRequest extends ApiErrorException
{
}