コード例 #1
0
ファイル: WtException.cs プロジェクト: luzhengning/wtPay
 public static WtExceptionType Instance()
 {
     if (instance == null)
     {
         instance = new WtExceptionType();
     }
     return(instance);
 }
コード例 #2
0
ファイル: WtException.cs プロジェクト: luzhengning/wtPay
 public string getMsg()
 {
     return(string.Format(" {0}![{1}] ", WtExceptionType.Instance().getType(this.Code), this.Code));
 }