Package org.apache.hadoop.hbase
Class UnknownRegionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.hadoop.hbase.HBaseIOException
org.apache.hadoop.hbase.DoNotRetryIOException
org.apache.hadoop.hbase.client.DoNotRetryRegionException
org.apache.hadoop.hbase.UnknownRegionException
- All Implemented Interfaces:
Serializable
Thrown when we are asked to operate on a region we know nothing about.
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionUnknownRegionException
(String message) Constructs a new UnknownRegionException with the specified detail message.UnknownRegionException
(String message, Throwable cause) Constructs a new UnknownRegionException with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
- See Also:
-
-
Constructor Details
-
UnknownRegionException
Constructs a new UnknownRegionException with the specified detail message.- Parameters:
message
- the detail message
-
UnknownRegionException
Constructs a new UnknownRegionException with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause of the exception
-