summaryrefslogtreecommitdiff
path: root/base/src/main/java/bjc/utils/ioutils/format/EscapeException.java
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2018-09-16 21:28:42 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2018-09-16 21:31:19 -0300
commit14c444db5bc8dac003cd31283de6484264377004 (patch)
treee277e4e781dd93f6d8a29cd2f30b38fc5a43385e /base/src/main/java/bjc/utils/ioutils/format/EscapeException.java
parent2f96f49c2d2c8679841c790e9dd7d9f1b6f3fed1 (diff)
Move CL format to submodule
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.java33
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