01: package org.tp23.antinstaller.input; 02: 03: /** 04: * @author Paul Hinds 05: * @version $Id: InputException.java,v 1.1.1.1 2005/10/18 18:20:55 teknopaul Exp $ 06: */ 07: public class InputException extends RuntimeException { 08: public InputException(String message) { 09: super(message); 10: } 11: }