示例#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();
 }