1 // $Id: IllegalUserInputException.java,v 1.1.1.1 2003/07/02 15:30:52 apopovic Exp $2 // =====================================================================3 //4 // (history at end)5 //6 7 package ch.ethz.prose.tools;8 9 /**10 * Exception class IllegalUserInputException signals that the data presented by11 * the user are not correct (missing information!)12 *13 * @version $Revision: 1.1.1.1 $14 * @author Andrei Popovici15 */16 public17 class IllegalUserInputException extends Exception {18 19 /**20 * Constructs an <code>IllegalUserInputException</code> with no detail message.21 */22 public IllegalUserInputException()23 {24 super();25 }26 27 /**28 * Constructs an <code>IllegalUserInputException</code> with the specified29 * detail message.30 */31 public IllegalUserInputException(String s)32 {33 super(s);34 }35 36 }37 38 39 //======================================================================40 //41 // $Log: IllegalUserInputException.java,v $42 // Revision 1.1.1.1 2003/07/02 15:30:52 apopovic43 // Imported from ETH Zurich44 //45 // Revision 1.1 2003/05/25 13:25:16 popovici46 // Refactoring47 // inf.iks.tools is now prose.tools48 // Stupid 'MyTableModel' renamed to 'WorksheetClientMode'49 // - other renamings from bad names to reasonable names50 //51 // Revision 1.1 2003/05/25 12:57:02 popovici52 // Initial revision53 //54