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

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