View Javadoc

1   /*
2    * $Id DatabaseAccessException.java $
3    *
4    */
5   
6   package org.astrogrid.tableserver.metadata;
7   
8   import org.astrogrid.dataservice.metadata.MetadataException;
9   
10  
11  /***
12   * Thrown when the guessColumn method in the metadoc interpreter finds more than
13   * one possible match for a column.
14   *
15   * @author M Hill
16   */
17  
18  public class TooManyColumnsException extends MetadataException
19  {
20     /***
21      * Constructor taking the cause of the error (an exception/error) and
22      * a message describing the context
23      */
24     public TooManyColumnsException(String message)
25     {
26        super(message);
27     }
28  
29  }
30