1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-09 17:19:39 +02:00

Make CorruptedOmemoKeyException not swallow exceptions

This commit is contained in:
Florian Schmaus 2018-06-20 11:51:46 +02:00
parent ac347fc598
commit 6e9fb17f8f
3 changed files with 9 additions and 5 deletions

View file

@ -27,4 +27,8 @@ public class CorruptedOmemoKeyException extends Exception {
public CorruptedOmemoKeyException(String message) {
super(message);
}
public CorruptedOmemoKeyException(Exception exception) {
super(exception);
}
}