Open Kilda Java Documentation
RestQueryException.java
Go to the documentation of this file.
1
package
org.openkilda.atdd.utils;
2
3
public
class
RestQueryException
extends
Exception {
4
public
RestQueryException
(String s) {
5
super(s);
6
}
7
8
public
RestQueryException
(Throwable throwable) {
9
this
(
"REST API call have failed"
, throwable);
10
}
11
12
public
RestQueryException
(String message, Throwable cause) {
13
super(message, cause);
14
}
15
}
org.openkilda.atdd.utils.RestQueryException.RestQueryException
RestQueryException(String s)
Definition:
RestQueryException.java:4
org.openkilda.atdd.utils.RestQueryException
Definition:
RestQueryException.java:3
org.openkilda.atdd.utils.RestQueryException.RestQueryException
RestQueryException(String message, Throwable cause)
Definition:
RestQueryException.java:12
org.openkilda.atdd.utils.RestQueryException.RestQueryException
RestQueryException(Throwable throwable)
Definition:
RestQueryException.java:8
open-kilda-develop
services
src
atdd
src
test
java
org
openkilda
atdd
utils
RestQueryException.java
Generated by
1.8.14