mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-25 07:07:39 +01:00
WalletProtobufSerializer: Rethrow IllegalArgumentException when loading wallets.
This commit is contained in:
parent
66a851bd30
commit
f20cb1132d
1 changed files with 2 additions and 0 deletions
|
@ -420,6 +420,8 @@ public class WalletProtobufSerializer {
|
|||
throw new UnreadableWalletException("Could not parse input stream to protobuf", e);
|
||||
} catch (IllegalStateException e) {
|
||||
throw new UnreadableWalletException("Could not parse input stream to protobuf", e);
|
||||
} catch (IllegalArgumentException e) {
|
||||
throw new UnreadableWalletException("Could not parse input stream to protobuf", e);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue