make_() public static method

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