Exemplo n.º 1
0
        public new static CancelledErr make(string msg, Err cause)
        {
            CancelledErr err = new CancelledErr();

            make_(err, msg, cause);
            return(err);
        }
Exemplo n.º 2
0
 public static void make_(CancelledErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Exemplo n.º 3
0
 public static void make_(CancelledErr self, string msg)
 {
     make_(self, msg, null);
 }
Exemplo n.º 4
0
 public static void make_(CancelledErr self)
 {
     make_(self, null);
 }
Exemplo n.º 5
0
 public static void make_(CancelledErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Exemplo n.º 6
0
 public static void make_(CancelledErr self, string msg)
 {
     make_(self, msg, null);
 }
Exemplo n.º 7
0
 public static void make_(CancelledErr self)
 {
     make_(self, null);
 }
Exemplo n.º 8
0
 public static new CancelledErr make(string msg, Err cause)
 {
     CancelledErr err = new CancelledErr();
       make_(err, msg, cause);
       return err;
 }