package exceptions;

public class IllegalTypeException extends RuntimeException {

	public IllegalTypeException(String msg) {
		super(msg);
	}
	
}
