public MyTwseException(MyTwseExceptionEnum errorCode, string detail) { this.ErrorCode = errorCode; this.ExceptionDetail = detail; }
public MyTwseException(MyTwseExceptionEnum errorCode, ModelStateDictionary modelState) { this.ErrorCode = errorCode; this.ExceptionDetail = modelState; }
public MyTwseException(MyTwseExceptionEnum errorCode) { this.ErrorCode = errorCode; }