Open Kilda Java Documentation
RestCallFailedException.java
Go to the documentation of this file.
1 package org.openkilda.exception;
2 
6 public class RestCallFailedException extends RuntimeException {
7 
9  private static final long serialVersionUID = 1L;
10 
15  super();
16  }
17 
26  public RestCallFailedException(final String message, final Throwable cause,
27  final boolean enableSuppression, final boolean writableStackTrace) {
28  super(message, cause, enableSuppression, writableStackTrace);
29  }
30 
37  public RestCallFailedException(final String message, final Throwable cause) {
38  super(message, cause);
39  }
40 
46  public RestCallFailedException(final String message) {
47  super(message);
48  }
49 
55  public RestCallFailedException(final Throwable cause) {
56  super(cause);
57  }
58 }
RestCallFailedException(final String message, final Throwable cause)
RestCallFailedException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace)