KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > prose > tools > IllegalUserInputException


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 by
11  * the user are not correct (missing information!)
12  *
13  * @version $Revision: 1.1.1.1 $
14  * @author Andrei Popovici
15  */

16 public
17 class IllegalUserInputException extends Exception JavaDoc {
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 specified
29    * detail message.
30    */

31   public IllegalUserInputException(String JavaDoc 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 apopovic
43
// Imported from ETH Zurich
44
//
45
// Revision 1.1 2003/05/25 13:25:16 popovici
46
// Refactoring
47
// inf.iks.tools is now prose.tools
48
// Stupid 'MyTableModel' renamed to 'WorksheetClientMode'
49
// - other renamings from bad names to reasonable names
50
//
51
// Revision 1.1 2003/05/25 12:57:02 popovici
52
// Initial revision
53
//
54
Popular Tags