HBASE-20579 Include original exception in wrapped exception
Signed-off-by: Ted Yu <yuzhihong@gmail.com>
This commit is contained in:
parent
8377873d22
commit
a5ed463d48
|
@ -877,7 +877,7 @@ public class ExportSnapshot extends AbstractHBaseTool implements Tool {
|
|||
fs.setOwner(path, filesUser, filesGroup);
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(
|
||||
"set owner for file " + path + " to " + filesUser + ":" + filesGroup + " failed");
|
||||
"set owner for file " + path + " to " + filesUser + ":" + filesGroup + " failed", e);
|
||||
}
|
||||
}, conf);
|
||||
}
|
||||
|
@ -893,7 +893,7 @@ public class ExportSnapshot extends AbstractHBaseTool implements Tool {
|
|||
fs.setPermission(path, perm);
|
||||
} catch (IOException e) {
|
||||
throw new RuntimeException(
|
||||
"set permission for file " + path + " to " + filesMode + " failed");
|
||||
"set permission for file " + path + " to " + filesMode + " failed", e);
|
||||
}
|
||||
}, conf);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue