ConstErr
Inheritance: Err
Ejemplo n.º 1
0
        public new static ConstErr make(string msg, Err cause)
        {
            ConstErr err = new ConstErr();

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