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

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