summaryrefslogtreecommitdiff
path: root/heat/TypecheckException.java
blob: 39919ef48c21101c394c85d46581867e13283540 (plain)
1
2
3
4
5
6
7
8
9
package heat;

public class TypecheckException extends RuntimeException {

    public TypecheckException(String message) {
        super(message);
    }

}