public class NoSuchElementException extends RuntimeException {
	public NoSuchElementException(String err) {
		super(err);
	}
}