KickJava   Java API By Example, From Geeks To Geeks.

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


1 // $Id: TableSelectionException.java,v 1.1.1.1 2003/07/02 15:30:53 apopovic Exp $
2
// =====================================================================
3
//
4
// (history at end)
5
//
6

7 package ch.ethz.prose.tools;
8
9 /**
10  * Exception class TableSelectionException signals that XXX
11  *
12  * @version $Revision: 1.1.1.1 $
13  * @author Andrei Popovici
14  */

15 public
16 class TableSelectionException extends Exception JavaDoc {
17
18   /**
19    * Constructs an <code>TableSelectionException</code> with no detail message.
20    */

21   public TableSelectionException()
22   {
23     super();
24   }
25
26   /**
27    * Constructs an <code>TableSelectionException</code> with the specified
28    * detail message.
29    */

30   public TableSelectionException(String JavaDoc s)
31   {
32     super(s);
33   }
34
35 }
36
37
38 //======================================================================
39
//
40
// $Log: TableSelectionException.java,v $
41
// Revision 1.1.1.1 2003/07/02 15:30:53 apopovic
42
// Imported from ETH Zurich
43
//
44
// Revision 1.1 2003/05/25 13:25:19 popovici
45
// Refactoring
46
// inf.iks.tools is now prose.tools
47
// Stupid 'MyTableModel' renamed to 'WorksheetClientMode'
48
// - other renamings from bad names to reasonable names
49
//
50
// Revision 1.1 2003/05/25 12:57:03 popovici
51
// Initial revision
52
//
53
Popular Tags