From 32f5da54c628408c96db09d279f3a7ef44b3bd19 Mon Sep 17 00:00:00 2001 From: bjculkin Date: Mon, 12 Feb 2018 22:19:02 -0500 Subject: Update --- .../java/bjc/utils/ioutils/format/EscapeException.java | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (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 index a1df55a..086f1cd 100644 --- a/base/src/main/java/bjc/utils/ioutils/format/EscapeException.java +++ b/base/src/main/java/bjc/utils/ioutils/format/EscapeException.java @@ -1,14 +1,32 @@ 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; } -- cgit v1.2.3