package export; public class ResponseCodeWrongException extends Exception { private static final long serialVersionUID = -1593242809354614946L; private int responseCode; public ResponseCodeWrongException(int responseCode) { this.responseCode=responseCode; } public int getResponseCode() { return responseCode; } public void setResponseCode(int responseCode) { this.responseCode = responseCode; } }