Open Kilda Java Documentation
FloodlightQueryException.java
Go to the documentation of this file.
1
package
org.openkilda.atdd.utils.controller;
2
3
import
org
.
openkilda
.
atdd
.
utils
.
RestQueryException
;
4
5
public
class
FloodlightQueryException
extends
RestQueryException
{
6
public
FloodlightQueryException
(Throwable cause) {
7
this
(
"Floodlight API call have failed"
, cause);
8
}
9
10
public
FloodlightQueryException
(Integer expect, Integer actual) {
11
super(String.format(
"Floodlight API call complete with invalid status code %s, expect %s"
, actual, expect));
12
}
13
14
public
FloodlightQueryException
(String message, Throwable cause) {
15
super(message, cause);
16
}
17
}
org.openkilda.atdd.utils.controller.FloodlightQueryException.FloodlightQueryException
FloodlightQueryException(Throwable cause)
Definition:
FloodlightQueryException.java:6
org.openkilda.atdd.utils.controller.FloodlightQueryException.FloodlightQueryException
FloodlightQueryException(String message, Throwable cause)
Definition:
FloodlightQueryException.java:14
org.openkilda.atdd
org
org.openkilda.atdd.utils.controller.FloodlightQueryException
Definition:
FloodlightQueryException.java:5
org.openkilda.atdd.utils
org.openkilda.atdd.utils.RestQueryException
Definition:
RestQueryException.java:3
org.openkilda.atdd.utils.controller.FloodlightQueryException.FloodlightQueryException
FloodlightQueryException(Integer expect, Integer actual)
Definition:
FloodlightQueryException.java:10
org.openkilda
open-kilda-develop
services
src
atdd
src
test
java
org
openkilda
atdd
utils
controller
FloodlightQueryException.java
Generated by
1.8.14