summaryrefslogtreecommitdiff
path: root/RGens/src/main/java/bjc/rgens/parser/GrammarException.java
diff options
context:
space:
mode:
authorBenjamin J. Culkin <bjculkin@mix.wvu.edu>2018-05-29 15:44:57 -0300
committerBenjamin J. Culkin <bjculkin@mix.wvu.edu>2018-05-29 15:44:57 -0300
commit03b9ed1601acfe323dc9b5360b8f2c2c972c8e04 (patch)
tree72e33eec337b386e6d536f128da03a9d4f2f12fe /RGens/src/main/java/bjc/rgens/parser/GrammarException.java
parentd22367abbb07f020dfb387032e9b72a040a170f5 (diff)
parent0faa5175b6f0de8835ed514615ac64135f406b29 (diff)
Merge branch 'working'
Diffstat (limited to 'RGens/src/main/java/bjc/rgens/parser/GrammarException.java')
-rwxr-xr-xRGens/src/main/java/bjc/rgens/parser/GrammarException.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/RGens/src/main/java/bjc/rgens/parser/GrammarException.java b/RGens/src/main/java/bjc/rgens/parser/GrammarException.java
deleted file mode 100755
index 9eaa0a1..0000000
--- a/RGens/src/main/java/bjc/rgens/parser/GrammarException.java
+++ /dev/null
@@ -1,36 +0,0 @@
-package bjc.rgens.parser;
-
-/**
- * The exception thrown when something goes wrong while parsing a
- * grammar.
- *
- * @author student
- */
-public class GrammarException extends RuntimeException {
- /* Serialization ID. */
- private static final long serialVersionUID = -7287427479316953668L;
-
- /**
- * Create a new grammar exception with the specified message.
- *
- * @param msg
- * The message for this exception.
- */
- public GrammarException(String msg) {
- super(msg);
- }
-
- /**
- * Create a new grammar exception with the specified message and
- * cause.
- *
- * @param msg
- * The message for this exception.
- *
- * @param cause
- * The cause of this exception.
- */
- public GrammarException(String msg, Exception cause) {
- super(msg, cause);
- }
-}