01: // $Id: IllegalUserInputException.java,v 1.1.1.1 2003/07/02 15:30:52 apopovic Exp $
02: // =====================================================================
03: //
04: // (history at end)
05: //
06:
07: package ch.ethz.prose.tools;
08:
09: /**
10: * Exception class IllegalUserInputException signals that the data presented by
11: * the user are not correct (missing information!)
12: *
13: * @version $Revision: 1.1.1.1 $
14: * @author Andrei Popovici
15: */
16: public class IllegalUserInputException extends Exception {
17:
18: private static final long serialVersionUID = 3617569388639564342L;
19:
20: /**
21: * Constructs an <code>IllegalUserInputException</code> with no detail message.
22: */
23: public IllegalUserInputException() {
24: super ();
25: }
26:
27: /**
28: * Constructs an <code>IllegalUserInputException</code> with the specified
29: * detail message.
30: */
31: public IllegalUserInputException(String s) {
32: super (s);
33: }
34:
35: }
36:
37: //======================================================================
38: //
39: // $Log: IllegalUserInputException.java,v $
40: // Revision 1.1.1.1 2003/07/02 15:30:52 apopovic
41: // Imported from ETH Zurich
42: //
43: // Revision 1.1 2003/05/25 13:25:16 popovici
44: // Refactoring
45: // inf.iks.tools is now prose.tools
46: // Stupid 'MyTableModel' renamed to 'WorksheetClientMode'
47: // - other renamings from bad names to reasonable names
48: //
49: // Revision 1.1 2003/05/25 12:57:02 popovici
50: // Initial revision
51: //
|