public BackEndException(ErrorCode errorCode, Exception e) { super(errorCode.toString(), e); this.errorCode = errorCode; }
/** * Returns the Error code * * @return */ public String getErrorCodeString() { return errorCode.toString(); }