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

[sinttest] Add TestNotPossibleException(Throwable)

This commit is contained in:
Florian Schmaus 2024-05-20 21:59:32 +02:00
parent eed707f39d
commit e69e7d2342

View file

@ -1,6 +1,6 @@
/** /**
* *
* Copyright 2015 Florian Schmaus * Copyright 2015-2024 Florian Schmaus
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -26,4 +26,8 @@ public class TestNotPossibleException extends Exception {
public TestNotPossibleException(String reason) { public TestNotPossibleException(String reason) {
super(reason); super(reason);
} }
public TestNotPossibleException(Throwable reason) {
super(reason);
}
} }