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

13 lines
260 B
PHP

<?php
namespace CoinGate\Exception\Api;
use CoinGate\Exception\ApiErrorException;
/**
* OrderNotFound is thrown when order does not exist and HTTP Status: 422 (Unprocessable Entity) or 404 (Not Found).
*/
class OrderNotFound extends ApiErrorException
{
}