/** * */ package anoncard.util; /** * @author christoph * */ public class ResponseException extends RuntimeException { private String response = null; public ResponseException(String response) { super(); this.response = response; } public String getResponse() { return response; } }