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

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