public oException(bool bWriteLog) { if (bWriteLog) { this.oLog = new IOLog(); this.writeLog = true; } }
public oException(string sParNameFileLog) { this.oLog = new IOLog(sParNameFileLog); this.writeLog = true; }
public oException(string sParNameFileLog, bool bWriteLog) { this.oLog = new IOLog(sParNameFileLog); this.writeLog = bWriteLog; }
public oException() { this.oLog = new IOLog(); }