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

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