From 924bcdc9a65c7f88004d6dbf8dfa138c9a125e5d Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 22:25:09 -0300 Subject: Source cleanup --- .../src/main/java/bjc/rgens/newparser/GrammarException.java | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'RGens/src/main/java/bjc/rgens/newparser/GrammarException.java') diff --git a/RGens/src/main/java/bjc/rgens/newparser/GrammarException.java b/RGens/src/main/java/bjc/rgens/newparser/GrammarException.java index ac37f7a..8e66f90 100644 --- a/RGens/src/main/java/bjc/rgens/newparser/GrammarException.java +++ b/RGens/src/main/java/bjc/rgens/newparser/GrammarException.java @@ -5,19 +5,16 @@ package bjc.rgens.newparser; * grammar. * * @author student - * */ public class GrammarException extends RuntimeException { - /* - * Serialization ID. - */ + /* Serialization ID. */ private static final long serialVersionUID = -7287427479316953668L; /** * Create a new grammar exception with the specified message. * * @param msg - * The message for this exception. + * The message for this exception. */ public GrammarException(String msg) { super(msg); @@ -28,12 +25,12 @@ public class GrammarException extends RuntimeException { * cause. * * @param msg - * The message for this exception. + * The message for this exception. * * @param cause - * The cause of this exception. + * The cause of this exception. */ public GrammarException(String msg, Exception cause) { super(msg, cause); } -} \ No newline at end of file +} -- cgit v1.2.3