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