コード例 #1
0
ファイル: ErrInfo.cs プロジェクト: shiningstone/ConfMgmt
 public ErrInfo(ErrCode code, object info, BIException biex)
 {
     Code = code;
     if (info != null)
     {
         Info = (info as string) + ": " + biex.mMsg;
     }
 }
コード例 #2
0
ファイル: ErrInfo.cs プロジェクト: shiningstone/ConfMgmt
 public BIException(ErrCode code, string msg, BIException ex)
 {
     mCode = code;
     mMsg  = msg + ": " + ex.mMsg;
 }