Laralabs/get-address-io

View on GitHub
src/Exceptions/Forbidden.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Laralabs\GetAddress\Exceptions;

use Exception;

class Forbidden extends Exception
{
    protected $message = 'Your API key is not valid for this request.';
}