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