public BusinessException(ResponseCodeEnum responseCode, string message, params object[] messageParameters) : base(message, responseCode.ToString())
 {
     MessageParameters = messageParameters;
 }
 public BusinessException(ResponseCodeEnum responseCode, string message, Exception inner) : base(message, responseCode.ToString(), inner)
 {
 }