JsonPath仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
494 B

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);
}
}