Beispiel #1
0
 public ConfigFetchException(ConfigFetchError error) : base(error.ToString())
 {
     this.error = error;
 }
Beispiel #2
0
 static Try <A> tryEx <A>(ConfigFetchError error)
 {
     return(F.err <A>(new ConfigFetchException(error)));
 }