mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 03:52:06 +01:00
[sinttest] Add TestNotPossibleException(String, Throwable) constructor
This commit is contained in:
parent
b3ef3c3477
commit
050acc4c53
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue