diff options
Diffstat (limited to 'base/src/main/java/bjc/utils/ioutils/format/EscapeException.java')
| -rw-r--r-- | base/src/main/java/bjc/utils/ioutils/format/EscapeException.java | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/base/src/main/java/bjc/utils/ioutils/format/EscapeException.java b/base/src/main/java/bjc/utils/ioutils/format/EscapeException.java deleted file mode 100644 index 086f1cd..0000000 --- a/base/src/main/java/bjc/utils/ioutils/format/EscapeException.java +++ /dev/null @@ -1,33 +0,0 @@ -package bjc.utils.ioutils.format;
-
-/**
- * An exception thrown to escape CL iteration directives.
- *
- * @author EVE
- *
- */
-public class EscapeException extends RuntimeException {
- private static final long serialVersionUID = -4552821131068559005L;
-
- /**
- * Whether or not this exception should end iteration.
- */
- public final boolean endIteration;
-
- /**
- * Create a new escape exception.
- */
- public EscapeException() {
- endIteration = false;
- }
-
- /**
- * Create a new escape exception.
- *
- * @param end
- * Whether or not to end the iteration.
- */
- public EscapeException(boolean end) {
- endIteration = end;
- }
-}
\ No newline at end of file |
