blob: a1df55a56d718a1ec1a3cc906301ae6cb22a4328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package bjc.utils.ioutils.format;
public class EscapeException extends RuntimeException {
private static final long serialVersionUID = -4552821131068559005L;
public final boolean endIteration;
public EscapeException() {
endIteration = false;
}
public EscapeException(boolean end) {
endIteration = end;
}
}
|