Beispiel #1
0
 protected virtual void ParseRespMessage(string code, ref string mean, ref string show)
 {
     ParseRespMessage(mErrConfigFile, code, ref mean, ref show);
     //增加业务错误码解析
     if (BaseBusinessEntity != null)
     {
         BaseBusinessEntity.ParseRespMessage(code, ref mean, ref show);
     }
 }
Beispiel #2
0
 public ObjectUpdateException(BaseBusinessEntity obj, Exception ex) : base(ex)
 {
 }
Beispiel #3
0
 public ObjectInsertException(BaseBusinessEntity obj, Exception ex) : base(ex)
 {
 }
Beispiel #4
0
 public UniqueConstraintException(BaseBusinessEntity obj, Exception ex) : base(ex)
 {
     ExceptionData = obj;
 }