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.
25 lines
468 B
25 lines
468 B
14 years ago
|
package com.jayway.jsonpath;
|
||
14 years ago
|
|
||
|
/**
|
||
|
* User: kalle stenflo
|
||
|
* Date: 1/24/11
|
||
|
* Time: 10:09 AM
|
||
|
*/
|
||
|
public class InvalidPathException extends RuntimeException {
|
||
14 years ago
|
|
||
|
public InvalidPathException() {
|
||
|
}
|
||
|
|
||
|
public InvalidPathException(String message) {
|
||
|
super(message);
|
||
|
}
|
||
|
|
||
|
public InvalidPathException(String message, Throwable cause) {
|
||
|
super(message, cause);
|
||
|
}
|
||
|
|
||
|
public InvalidPathException(Throwable cause) {
|
||
|
super(cause);
|
||
|
}
|
||
14 years ago
|
}
|