1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 12:02:05 +01:00

[sinttest] Add TestNotPossibleException(String, Throwable) constructor

This commit is contained in:
Florian Schmaus 2024-07-14 12:09:59 +02:00
parent b3ef3c3477
commit 050acc4c53

View file

@ -30,4 +30,8 @@ public class TestNotPossibleException extends Exception {
public TestNotPossibleException(Throwable reason) { public TestNotPossibleException(Throwable reason) {
super(reason); super(reason);
} }
public TestNotPossibleException(String message, Throwable reason) {
super(message, reason);
}
} }