mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-09-09 10:19:41 +02:00
Make CorruptedOmemoKeyException not swallow exceptions
This commit is contained in:
parent
ac347fc598
commit
6e9fb17f8f
3 changed files with 9 additions and 5 deletions
|
@ -27,4 +27,8 @@ public class CorruptedOmemoKeyException extends Exception {
|
|||
public CorruptedOmemoKeyException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public CorruptedOmemoKeyException(Exception exception) {
|
||||
super(exception);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue