Package org.apache.accumulo.core.client
Class TableNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.accumulo.core.client.TableNotFoundException
- All Implemented Interfaces:
- Serializable
Thrown when the table specified doesn't exist when it was expected to
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionTableNotFoundException(String tableId, String tableName, String description) TableNotFoundException(String tableId, String tableName, String description, Throwable cause) TableNotFoundException(String tableName, NamespaceNotFoundException e) TableNotFoundException(org.apache.accumulo.core.clientImpl.thrift.ThriftTableOperationException e) 
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
TableNotFoundException- Parameters:
- tableId- the internal id of the table that was sought
- tableName- the visible name of the table that was sought
- description- the specific reason why it failed
 
- 
TableNotFoundExceptionpublic TableNotFoundException(String tableId, String tableName, String description, Throwable cause) - Parameters:
- tableId- the internal id of the table that was sought
- tableName- the visible name of the table that was sought
- description- the specific reason why it failed
- cause- the exception that caused this failure
 
- 
TableNotFoundExceptionpublic TableNotFoundException(org.apache.accumulo.core.clientImpl.thrift.ThriftTableOperationException e) - Parameters:
- e- constructs an exception from a thrift exception
 
- 
TableNotFoundException- Parameters:
- tableName- the original specified table
- e- indicates that a table wasn't found because the namespace specified in the table name wasn't found
 
 
- 
- 
Method Details- 
getTableName- Returns:
- the name of the table sought
 
 
-