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 XXX11 *12 * @version $Revision: 1.1.1.1 $13 * @author Andrei Popovici14 */15 public16 class TableSelectionException extends Exception {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 specified28 * detail message.29 */30 public TableSelectionException(String 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 apopovic42 // Imported from ETH Zurich43 //44 // Revision 1.1 2003/05/25 13:25:19 popovici45 // Refactoring46 // inf.iks.tools is now prose.tools47 // Stupid 'MyTableModel' renamed to 'WorksheetClientMode'48 // - other renamings from bad names to reasonable names49 //50 // Revision 1.1 2003/05/25 12:57:03 popovici51 // Initial revision52 //53