make_() public static method

public static make_ ( Err self ) : void
self Err
return void
Example #1
0
 public static void make_(UnknownServiceErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Example #2
0
 public static void make_(IOErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Example #3
0
 public static void make_(UnresolvedErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Example #4
0
 public static void make_(FieldNotSetErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Example #5
0
 public static void make_(NotImmutableErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Example #6
0
 public static void make_(UnsupportedErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Example #7
0
 public static void make_(InterruptedErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }