ready to generate code
[cdsspec-compiler.git] / src / edu / uci / eecs / specCompiler / codeGenerator / SemanticsCheckerException.java
1 package edu.uci.eecs.specCompiler.codeGenerator;
2
3 public class SemanticsCheckerException extends Exception {
4         public SemanticsCheckerException(String msg) {
5                 super(msg);
6         }
7 }