Esempio n. 1
0
 public static Exceptional <T> Raise <T>(string v)
 {
     return(Exceptional <T> .Raise(new System.Exception(v)));
 }
Esempio n. 2
0
 public static Exceptional <T> From <T>(System.Func <T> f)
 {
     return(Exceptional <T> .From(f));
 }
Esempio n. 3
0
 public static Exceptional <T> From <T>(System.Func <T> f, System.Type exceptionType)
 {
     return(Exceptional <T> .From(f, exceptionType));
 }