13 lines
201 B
PHP
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
|
|
{
|
|
}
|