All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jayway.jsonpath.InvalidPathException Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package com.jayway.jsonpath;

/**
 * User: kalle stenflo
 * Date: 1/24/11
 * Time: 10:09 AM
 */
public class InvalidPathException extends RuntimeException {

    public InvalidPathException() {
    }

    public InvalidPathException(String message) {
        super(message);
    }

    public InvalidPathException(String message, Throwable cause) {
        super(message, cause);
    }

    public InvalidPathException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy