Package org.apache.accumulo.core.client
Class NamespaceNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.accumulo.core.client.NamespaceNotFoundException
-
- All Implemented Interfaces:
Serializable
public class NamespaceNotFoundException extends Exception
Thrown when the namespace specified doesn't exist when it was expected to- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NamespaceNotFoundException(String namespaceId, String namespaceName, String description)
NamespaceNotFoundException(String namespaceId, String namespaceName, String description, Throwable cause)
NamespaceNotFoundException(ThriftTableOperationException e)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getNamespaceName()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NamespaceNotFoundException
public NamespaceNotFoundException(String namespaceId, String namespaceName, String description)
- Parameters:
namespaceId
- the internal id of the namespace that was soughtnamespaceName
- the visible name of the namespace that was soughtdescription
- the specific reason why it failed
-
NamespaceNotFoundException
public NamespaceNotFoundException(String namespaceId, String namespaceName, String description, Throwable cause)
- Parameters:
namespaceId
- the internal id of the namespace that was soughtnamespaceName
- the visible name of the namespace that was soughtdescription
- the specific reason why it failedcause
- the exception that caused this failure
-
NamespaceNotFoundException
public NamespaceNotFoundException(ThriftTableOperationException e)
- Parameters:
e
- constructs an exception from a thrift exception
-
-
Method Detail
-
getNamespaceName
public String getNamespaceName()
- Returns:
- the name of the namespace sought
-
-