SoftCreatR/JSONPath

View on GitHub
src/JSONPathException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

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

namespace Flow\JSONPath;

use Exception;

class JSONPathException extends Exception
{
    // does nothing
}