コード例 #1
0
ファイル: Exeption.cs プロジェクト: cws2097/TSAPILIB
 public Exeption(ACSFunctionRet_t type)
     : base(String.Format("{0}", type))
 {
 }
コード例 #2
0
ファイル: Exeption.cs プロジェクト: cws2097/TSAPILIB
 public Exeption(String text, ACSFunctionRet_t type)
     : base(String.Format("{0}:{1}", text, type))
 {
     Code = type;
 }