Laralabs/get-address-io

View on GitHub
src/Exceptions/TooManyRequests.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Laralabs\GetAddress\Exceptions;

use Exception;

class TooManyRequests extends Exception
{
    protected $message = 'You have made too many requests for this key.';
}