Beispiel #1
0
 public FlagError(ErrorType errorType, JryFlagType type, string value)
     : base(errorType)
 {
     this.type  = type;
     this.value = value;
     this.Id    = type.ToString();
 }
Beispiel #2
0
 public FlagError(ErrorType errorType, JryFlagType type, string value, int count, int actualCount)
     : base(errorType)
 {
     this.type        = type;
     this.value       = value;
     this.count       = count;
     this.actualCount = actualCount;
     this.Id          = type.ToString();
 }
 public FlagError(ErrorType errorType, JryFlagType type, string value, int count, int actualCount)
     : base(errorType)
 {
     this.type = type;
     this.value = value;
     this.count = count;
     this.actualCount = actualCount;
     this.Id = type.ToString();
 }
 public FlagError(ErrorType errorType, JryFlagType type, string value)
     : base(errorType)
 {
     this.type = type;
     this.value = value;
     this.Id = type.ToString();
 }