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

            make_(err, msg, cause);
            return(err);
        }
示例#2
0
        public override sealed Slot slot(string name, bool check)
        {
            Slot slot = (Slot)((GenericType)reflect()).m_slotsByName[name];

            if (slot != null)
            {
                return(slot);
            }
            if (check)
            {
                throw UnknownSlotErr.make(this.qname() + "." + name).val;
            }
            return(null);
        }
示例#3
0
 public static void make_(UnknownSlotErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
示例#4
0
 public static void make_(UnknownSlotErr self, string msg)
 {
     make_(self, msg, null);
 }
示例#5
0
 public static void make_(UnknownSlotErr self)
 {
     make_(self, null);
 }
示例#6
0
 public static new UnknownSlotErr make(string msg, Err cause)
 {
     UnknownSlotErr err = new UnknownSlotErr();
       make_(err, msg, cause);
       return err;
 }
示例#7
0
 public static void make_(UnknownSlotErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
示例#8
0
 public static void make_(UnknownSlotErr self, string msg)
 {
     make_(self, msg, null);
 }
示例#9
0
 public static void make_(UnknownSlotErr self)
 {
     make_(self, null);
 }