/** * */ package anoncard.util; /** * @author christoph * */ public class ISOExceptionException extends RuntimeException { String errorCode; public ISOExceptionException(String errorCode) { super(); this.errorCode = errorCode; } public ISOExceptionException(short errorCode) { super(); this.errorCode = "" + errorCode; } public String getErrorCode() { return errorCode; } }