Class UnresolvedTableException

All Implemented Interfaces:
Serializable

public class UnresolvedTableException extends ParseException
This exception is thrown by DBChecker when a table does not exist or whose the schema reference is ambiguous.
See Also:
  • Constructor Details

    • UnresolvedTableException

      public UnresolvedTableException(ADQLTable table)

      UNKNOWN TABLE

      Builds the exception with an ADQLTable which does not exist.

      Parameters:
      table - The unresolved ADQLTable.
    • UnresolvedTableException

      public UnresolvedTableException(ADQLTable table, String t1, String t2)

      AMBIGUOUS TABLE NAME

      Builds the exception with an ADQLTable which does not have a schema reference AND which may come from more than one schema. The two given schema names are schemas which contain a table with the same name as the given one.

      Parameters:
      table - The ambiguous ADQLTable (no schema reference).
      t1 - First possibility.
      t2 - A second possibility.
    • UnresolvedTableException

      public UnresolvedTableException(ADQLColumn column)

      UNKNOWN TABLE REFERENCE

      Builds the exception with an ADQLColumn whose the table reference is unknown.

      Parameters:
      column - The ADQLColumn whose the table reference is unresolved.
    • UnresolvedTableException

      public UnresolvedTableException(ADQLColumn column, String table1, String table2)

      AMBIGUOUS TABLE REFERENCE

      Builds the exception with an ADQLColumn which has an ambiguous table reference. The two given table correspond to tables which match with the table reference of the given ADQLColumn.

      Parameters:
      column - The ADQLColumn whose the table reference is ambiguous.
      table1 - A table whose the name match with the table reference of the column.
      table2 - Another table whose the name match with the table reference of the column.
  • Method Details

    • initPosition

      protected final void initPosition(ADQLTable table)
      Initializes the position at which this exception occurs.
      Parameters:
      table - The unresolved table.
    • initPosition

      protected final void initPosition(ADQLColumn column)
    • getTableName

      public final String getTableName()