Newer
Older
ResourceDependencyLogic / src / exceptions / IllegalTypeException.java
@Sakoda2269 Sakoda2269 on 16 Oct 218 bytes 例外を追加
package exceptions;

public class IllegalTypeException extends RuntimeException {

	public IllegalTypeException() {
		super("Term type is illegal");
	}
	
	public IllegalTypeException(String msg) {
		super(msg);
	}
	
}