From 14c444db5bc8dac003cd31283de6484264377004 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Sun, 16 Sep 2018 21:28:42 -0300 Subject: Move CL format to submodule --- .../bjc/utils/ioutils/format/EscapeException.java | 33 ---------------------- 1 file changed, 33 deletions(-) delete mode 100644 base/src/main/java/bjc/utils/ioutils/format/EscapeException.java (limited to 'base/src/main/java/bjc/utils/ioutils/format/EscapeException.java') 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 -- cgit v1.2.3