blob: 7dac94fd92371e6b62c65e4fc81a2df2b9913153 [file] [log] [blame]
package edu.uci.ics.asterix.common.exceptions;
public class TypeException extends AsterixException {
/**
*
*/
private static final long serialVersionUID = 6823056042083694786L;
public TypeException(String s) {
super(s);
}
public TypeException() {
super();
}
}