/**
 * Basic example of defining custom Exceptions.
 * 
 * @author charlieg
 * @author <a href="mailto:charlieg@cis.udel.edu">charlieg@cis.udel.edu</a>
 * @author <a href="http://www.cis.udel.edu/~charlieg">www.cis.udel.edu/~charlieg</a>
 * @version 1.0, &nbsp; 1 Oct 2009
 *
 */
public class NegativeException extends Exception {
	public NegativeException(String s) {
		super(s);
	}
}
