Open Kilda Java Documentation
FlowOperationException.java
Go to the documentation of this file.
1 package org.openkilda.flow;
2 
3 import javax.ws.rs.core.Response;
4 
5 public class FlowOperationException extends Exception {
6  private final Response restResponse;
7 
8  public FlowOperationException(Response restResponse, String s) {
9  super(s);
10 
11  this.restResponse = restResponse;
12  }
13 
14  public Response getRestResponse() {
15  return restResponse;
16  }
17 }
FlowOperationException(Response restResponse, String s)