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

            make_(err, msg, cause);
            return(err);
        }
Exemplo n.º 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);
        }
Exemplo n.º 3
0
 public static void make_(UnknownSlotErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Exemplo n.º 4
0
 public static void make_(UnknownSlotErr self, string msg)
 {
     make_(self, msg, null);
 }
Exemplo n.º 5
0
 public static void make_(UnknownSlotErr self)
 {
     make_(self, null);
 }
Exemplo n.º 6
0
 public static new UnknownSlotErr make(string msg, Err cause)
 {
     UnknownSlotErr err = new UnknownSlotErr();
       make_(err, msg, cause);
       return err;
 }
Exemplo n.º 7
0
 public static void make_(UnknownSlotErr self, string msg, Err cause)
 {
     Err.make_(self, msg, cause);
 }
Exemplo n.º 8
0
 public static void make_(UnknownSlotErr self, string msg)
 {
     make_(self, msg, null);
 }
Exemplo n.º 9
0
 public static void make_(UnknownSlotErr self)
 {
     make_(self, null);
 }