Open Kilda Java Documentation
FloodlightQueryException.java
Go to the documentation of this file.
1 package org.openkilda.atdd.utils.controller;
2 
4 
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 }