use of org.apache.hadoop.hbase.quotas.ThrottlingException in project hbase by apache.
the class TestMetaCache method metaCachePreservingExceptions.
public static List<Throwable> metaCachePreservingExceptions() {
return new ArrayList<Throwable>() {
{
add(new RegionOpeningException(" "));
add(new RegionTooBusyException());
add(new ThrottlingException(" "));
add(new MultiActionResultTooLarge(" "));
add(new RetryImmediatelyException(" "));
add(new CallQueueTooBigException());
}
};
}
Aggregations