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 }
RestQueryException(String message, Throwable cause)