Ejemplo n.º 1
0
 public static ConfigLookupError keyNotFound(Functional.Lazy <string> message) =>
 new ConfigLookupError(Kind.KEY_NOT_FOUND, message);
Ejemplo n.º 2
0
 public static ConfigLookupError wrongType(Functional.Lazy <string> message) =>
 new ConfigLookupError(Kind.WRONG_TYPE, message);
Ejemplo n.º 3
0
 public ConfigLookupError(Kind kind, Functional.Lazy <string> messageLazy)
 {
     this.kind        = kind;
     this.messageLazy = messageLazy;
 }