13 lines
206 B
PHP
13 lines
206 B
PHP
<?php
|
|
|
|
namespace CoinGate\Exception\Api;
|
|
|
|
use CoinGate\Exception\ApiErrorException;
|
|
|
|
/**
|
|
* Unauthorized is thrown when HTTP Status: 401 (Unauthorized).
|
|
*/
|
|
class Unauthorized extends ApiErrorException
|
|
{
|
|
}
|