secure-custom-fields
/
vendor
/
justinrainbow
/
json-schema
/
src
/
JsonSchema
/
Exception
/
UnresolvableJsonPointerException.php
secure-custom-fields
/
vendor
/
justinrainbow
/
json-schema
/
src
/
JsonSchema
/
Exception
Last commit date
ExceptionInterface.php
9 months ago
InvalidArgumentException.php
9 months ago
InvalidConfigException.php
9 months ago
InvalidSchemaException.php
9 months ago
InvalidSchemaMediaTypeException.php
9 months ago
InvalidSourceUriException.php
9 months ago
JsonDecodingException.php
9 months ago
ResourceNotFoundException.php
9 months ago
RuntimeException.php
9 months ago
UnresolvableJsonPointerException.php
9 months ago
UriResolverException.php
9 months ago
ValidationException.php
9 months ago
UnresolvableJsonPointerException.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the JsonSchema package. |
| 5 | * |
| 6 | * For the full copyright and license information, please view the LICENSE |
| 7 | * file that was distributed with this source code. |
| 8 | */ |
| 9 | |
| 10 | namespace JsonSchema\Exception; |
| 11 | |
| 12 | /** |
| 13 | * @package JsonSchema\Exception |
| 14 | * |
| 15 | * @author Joost Nijhuis <jnijhuis81@gmail.com> |
| 16 | */ |
| 17 | class UnresolvableJsonPointerException extends InvalidArgumentException |
| 18 | { |
| 19 | } |
| 20 |