mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-09 00:59:39 +02: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…
Add table
Add a link
Reference in a new issue