blob: 4639a3e7dbc3117ae10ab0f3ed12685b514a29de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
declare(strict_types=1);
namespace MaxMind\Exception;
/**
* Thrown when the account is out of credits.
*/
class InsufficientFundsException extends InvalidRequestException
{
}
|