git @ Cat's Eye Technologies Zplet / master src / main / java / org / zplet / awt / screenmodel / NoSuchKeyException.java
master

Tree @master (Download .tar.gz)

NoSuchKeyException.java @masterraw · history · blame

/* Zplet, a Z-Machine interpreter in Java */
/* Copyright 1996,2001 Matthew T. Russotto */
/* As of 23 February 2001, this code is open source and covered by the */
/* Artistic License, found within this package */

package org.zplet.awt.screenmodel;

class NoSuchKeyException extends Exception {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	public NoSuchKeyException() {
		super();
	}

	public NoSuchKeyException(String s) {
		super(s);
	}
}