2020-11-01 07:20:14 +01:00
|
|
|
<?php
|
|
|
|
|
2022-07-13 10:40:19 +02:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2020-11-01 07:20:14 +01:00
|
|
|
namespace MaxMind\Exception;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Thrown when the account is out of credits.
|
|
|
|
*/
|
|
|
|
class InsufficientFundsException extends InvalidRequestException
|
|
|
|
{
|
|
|
|
}
|