mirror of
https://github.com/signalapp/libsignal.git
synced 2026-05-10 09:02:05 +02:00
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:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user