Jochen Berger
9 years ago
2 changed files with 12 additions and 1 deletions
@ -1,4 +1,13 @@ |
|||||||
package com.jayway.jsonpath.internal; |
package com.jayway.jsonpath.internal; |
||||||
|
|
||||||
public class EvaluationAbortException extends RuntimeException { |
public class EvaluationAbortException extends RuntimeException { |
||||||
|
|
||||||
|
private static final long serialVersionUID = 4419305302960432348L; |
||||||
|
|
||||||
|
// this is just a marker exception to abort evaluation, we don't care about
|
||||||
|
// the stack
|
||||||
|
@Override |
||||||
|
public Throwable fillInStackTrace() { |
||||||
|
return this; |
||||||
|
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue