Map errors through the bridge more carefully

Remove several errors that were very once-off.

In Java avoid throwing RuntimeException unless it's an internal error
that we really should crash on.
This commit is contained in:
Jack Lloyd
2021-01-27 16:53:29 -05:00
parent f7234958b5
commit d77fa218a2
14 changed files with 217 additions and 89 deletions

View File

@@ -7,8 +7,8 @@ package org.whispersystems.libsignal.fingerprint;
public class FingerprintParsingException extends Exception {
public FingerprintParsingException(Exception nested) {
super(nested);
public FingerprintParsingException(String message) {
super(message);
}
}