We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents da1628c + 96b17fe commit 6460eedCopy full SHA for 6460eed
1 file changed
src/main/java/org/mdkt/compiler/CompilationException.java
@@ -0,0 +1,9 @@
1
+package org.mdkt.compiler;
2
+
3
+public class CompilationException extends RuntimeException {
4
+ private static final long serialVersionUID = 5272588827551900536L;
5
6
+ public CompilationException(String msg) {
7
+ super(msg);
8
+ }
9
+}
0 commit comments