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

13 lines
228 B
PHP

<?php
namespace CoinGate\Exception\Api;
use CoinGate\Exception\ApiErrorException;
/**
* UnprocessableEntity is thrown when HTTP Status: 422 (Unprocessable Entity).
*/
class UnprocessableEntity extends ApiErrorException
{
}