### Eclipse Workspace Patch 1.0 #P apache-hbase-trunk Index: hbase-server/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java =================================================================== --- hbase-server/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java (revision 1374898) +++ hbase-server/src/main/java/org/apache/hadoop/hbase/client/RetriesExhaustedWithDetailsException.java (working copy) @@ -129,7 +129,7 @@ for (Throwable t : ths) { if (t == null) continue; String name = ""; - if (t instanceof NoSuchColumnFamilyException) { + if (t instanceof DoNotRetryIOException) { name = t.getMessage(); } else { name = t.getClass().getSimpleName();