Example #1
0
 public ErrorMsg(string s, Object context = null) : this(s, context.opt())
 {
 }
Example #2
0
 public ErrorMsg(string s, Object context = null, bool reportToErrorTracking = true)
     : this(s, context.opt(), reportToErrorTracking)
 {
 }
Example #3
0
 public ErrorMsg(string s, bool reportToErrorTracking = true, Object context = null)
     : this(s, reportToErrorTracking, context.opt())
 {
 }
Example #4
0
 public ErrorMsg(string s, Object context = null)
 {
     this.s       = s;
     this.context = context.opt();
 }