コード例 #1
0
 public oException(bool bWriteLog)
 {
     if (bWriteLog)
     {
         this.oLog     = new IOLog();
         this.writeLog = true;
     }
 }
コード例 #2
0
 public oException(string sParNameFileLog)
 {
     this.oLog     = new IOLog(sParNameFileLog);
     this.writeLog = true;
 }
コード例 #3
0
 public oException(string sParNameFileLog, bool bWriteLog)
 {
     this.oLog     = new IOLog(sParNameFileLog);
     this.writeLog = bWriteLog;
 }
コード例 #4
0
 public oException()
 {
     this.oLog = new IOLog();
 }