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

            make_(err, msg, cause);
            return(err);
        }
示例#2
0
 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
 public static void make_(UnknownServiceErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
示例#4
0
 public static void make_(UnknownServiceErr self, string msg)
 {
     make_(self, msg, null);
 }
示例#5
0
 public static void make_(UnknownServiceErr self)
 {
     make_(self, null);
 }
示例#6
0
 public static void make_(UnknownServiceErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
示例#7
0
 public static void make_(UnknownServiceErr self, string msg)
 {
     make_(self, msg, null);
 }
示例#8
0
 public static void make_(UnknownServiceErr self)
 {
     make_(self, null);
 }
示例#9
0
 public static new UnknownServiceErr make(string msg, Err cause)
 {
     UnknownServiceErr err = new UnknownServiceErr();
       make_(err, msg, cause);
       return err;
 }