13 lines
243 B
PHP
13 lines
243 B
PHP
<?php
|
|
|
|
namespace CoinGate\Exception\Api;
|
|
|
|
use CoinGate\Exception\ApiErrorException;
|
|
|
|
/**
|
|
* OrderIsNotValid is thrown when order is not valid and HTTP Status: 422 (Unprocessable Entity).
|
|
*/
|
|
class OrderIsNotValid extends ApiErrorException
|
|
{
|
|
}
|