*** empty log message ***
[repair.git] / Repair / RepairCompiler / MCC / IR / IRException.java
1 package MCC.IR;
2
3 /**
4  * If an exception condition occurs while building an IR, an IRException
5  * object is thrown.
6  */
7
8 public class IRException extends java.lang.RuntimeException
9 {
10     /**
11      * @param reason    reason for exception 
12      */
13     public IRException(String reason)
14     {
15         super(reason);
16     }
17
18     public IRException()
19     {
20         super("IR ERROR");
21     }
22 }
23