mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-0 corrected DBContentHandler exception encapsulation
This commit is contained in:
parent
43bbc10ad9
commit
0380709881
4 changed files with 13 additions and 13 deletions
|
@ -114,7 +114,7 @@ public class VTSessionContentHandler extends DBContentHandler<VTSessionDB> {
|
|||
if (msg == null) {
|
||||
msg = t.toString();
|
||||
}
|
||||
throw new IOException("Open failed: " + msg);
|
||||
throw new IOException("Open failed: " + msg, t);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -184,7 +184,7 @@ public class VTSessionContentHandler extends DBContentHandler<VTSessionDB> {
|
|||
if (msg == null) {
|
||||
msg = t.toString();
|
||||
}
|
||||
throw new IOException("Open failed: " + msg);
|
||||
throw new IOException("Open failed: " + msg, t);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue