com.jayway.jsonpath.InvalidJsonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-path Show documentation
Show all versions of json-path Show documentation
Java port of Stefan Goessner JsonPath.
package com.jayway.jsonpath;
/**
* Created by IntelliJ IDEA.
* User: kallestenflo
* Date: 11/8/11
* Time: 4:01 PM
*/
public class InvalidJsonException extends RuntimeException{
public InvalidJsonException() {
}
public InvalidJsonException(String message) {
super(message);
}
public InvalidJsonException(String message, Throwable cause) {
super(message, cause);
}
public InvalidJsonException(Throwable cause) {
super(cause);
}
}