Package io.prestosql.spi.connector
Class ColumnNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- io.prestosql.spi.PrestoException
-
- io.prestosql.spi.connector.NotFoundException
-
- io.prestosql.spi.connector.ColumnNotFoundException
-
- All Implemented Interfaces:
Serializable
public class ColumnNotFoundException extends NotFoundException
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ColumnNotFoundException(SchemaTableName tableName, String columnName)
ColumnNotFoundException(SchemaTableName tableName, String columnName, String message)
ColumnNotFoundException(SchemaTableName tableName, String columnName, String message, Throwable cause)
ColumnNotFoundException(SchemaTableName tableName, String columnName, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColumnName()
SchemaTableName
getTableName()
-
Methods inherited from class io.prestosql.spi.PrestoException
getErrorCode, getLocation, getMessage, getRawMessage
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ColumnNotFoundException
public ColumnNotFoundException(SchemaTableName tableName, String columnName)
-
ColumnNotFoundException
public ColumnNotFoundException(SchemaTableName tableName, String columnName, String message)
-
ColumnNotFoundException
public ColumnNotFoundException(SchemaTableName tableName, String columnName, Throwable cause)
-
ColumnNotFoundException
public ColumnNotFoundException(SchemaTableName tableName, String columnName, String message, Throwable cause)
-
-
Method Detail
-
getTableName
public SchemaTableName getTableName()
-
getColumnName
public String getColumnName()
-
-