| InputException.java |
1 package org.tp23.antinstaller.input;
2
3
4 /**
5 * @author Paul Hinds
6 * @version $Id: InputException.java,v 1.1.1.1 2005/10/18 18:20:55 teknopaul Exp $
7 */
8 public class InputException extends RuntimeException {
9 public InputException(String message){
10 super(message);
11 }
12}
13