UnknownServiceErr
Inheritance: Err
コード例 #1
0
ファイル: UnknownServiceErr.cs プロジェクト: syatanic/fantom
        public new static UnknownServiceErr make(string msg, Err cause)
        {
            UnknownServiceErr err = new UnknownServiceErr();

            make_(err, msg, cause);
            return(err);
        }
コード例 #2
0
ファイル: Service_.cs プロジェクト: syatanic/fantom
 public static Service find(string qname, bool check)
 {
     lock (m_lock)
     {
         Node node = (Node)byType[qname];
         if (node != null)
         {
             return(node.service);
         }
         if (check)
         {
             throw UnknownServiceErr.make(qname).val;
         }
         return(null);
     }
 }
コード例 #3
0
ファイル: UnknownServiceErr.cs プロジェクト: syatanic/fantom
 public static void make_(UnknownServiceErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
コード例 #4
0
ファイル: UnknownServiceErr.cs プロジェクト: syatanic/fantom
 public static void make_(UnknownServiceErr self, string msg)
 {
     make_(self, msg, null);
 }
コード例 #5
0
ファイル: UnknownServiceErr.cs プロジェクト: syatanic/fantom
 public static void make_(UnknownServiceErr self)
 {
     make_(self, null);
 }
コード例 #6
0
ファイル: UnknownServiceErr.cs プロジェクト: nomit007/f4
 public static void make_(UnknownServiceErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
コード例 #7
0
ファイル: UnknownServiceErr.cs プロジェクト: nomit007/f4
 public static void make_(UnknownServiceErr self, string msg)
 {
     make_(self, msg, null);
 }
コード例 #8
0
ファイル: UnknownServiceErr.cs プロジェクト: nomit007/f4
 public static void make_(UnknownServiceErr self)
 {
     make_(self, null);
 }
コード例 #9
0
ファイル: UnknownServiceErr.cs プロジェクト: nomit007/f4
 public static new UnknownServiceErr make(string msg, Err cause)
 {
     UnknownServiceErr err = new UnknownServiceErr();
       make_(err, msg, cause);
       return err;
 }