ConstErr
상속: Err
예제 #1
0
파일: ConstErr.cs 프로젝트: syatanic/fantom
        public new static ConstErr make(string msg, Err cause)
        {
            ConstErr err = new ConstErr();

            make_(err, msg, cause);
            return(err);
        }
예제 #2
0
파일: ConstErr.cs 프로젝트: syatanic/fantom
 public static void make_(ConstErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
예제 #3
0
파일: ConstErr.cs 프로젝트: syatanic/fantom
 public static void make_(ConstErr self, string msg)
 {
     make_(self, msg, null);
 }
예제 #4
0
파일: ConstErr.cs 프로젝트: syatanic/fantom
 public static void make_(ConstErr self)
 {
     make_(self, null);
 }
예제 #5
0
파일: ConstErr.cs 프로젝트: nomit007/f4
 public static void make_(ConstErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
예제 #6
0
파일: ConstErr.cs 프로젝트: nomit007/f4
 public static void make_(ConstErr self, string msg)
 {
     make_(self, msg, null);
 }
예제 #7
0
파일: ConstErr.cs 프로젝트: nomit007/f4
 public static void make_(ConstErr self)
 {
     make_(self, null);
 }
예제 #8
0
파일: ConstErr.cs 프로젝트: nomit007/f4
 public static new ConstErr make(string msg, Err cause)
 {
     ConstErr err = new ConstErr();
       make_(err, msg, cause);
       return err;
 }