| 1 | <?php |
| 2 | |
| 3 | declare (strict_types=1); |
| 4 | namespace Matomo\Dependencies\MaxMind\Exception; |
| 5 | |
| 6 | /** |
| 7 | * This class represents an error in creating the request to be sent to the |
| 8 | * web service. For example, if the array cannot be encoded as JSON or if there |
| 9 | * is a missing or invalid field. |
| 10 | */ |
| 11 | class InvalidInputException extends WebServiceException |
| 12 | { |
| 13 | } |
| 14 |