PHP Classes

File: src/JSONPathException.php

Recommend this page to a friend!
  Classes of Sascha Greuel   PHP JSON Path   src/JSONPathException.php   Download  
File: src/JSONPathException.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP JSON Path
Query values from data structures like XPATH
Author: By
Last change:
Date: 3 years ago
Size: 251 bytes
 

Contents

Class file image Download
<?php

/**
 * JSONPath implementation for PHP.
 *
 * @license https://github.com/SoftCreatR/JSONPath/blob/main/LICENSE MIT License
 */

declare(strict_types=1);

namespace
Flow\JSONPath;

use
Exception;

class
JSONPathException extends Exception
{
}