11 lines
160 B
PHP
11 lines
160 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace MaxMind\Exception;
|
||
|
|
||
|
/**
|
||
|
* Thrown when the account is out of credits.
|
||
|
*/
|
||
|
class InsufficientFundsException extends InvalidRequestException
|
||
|
{
|
||
|
}
|