Exemplo n.º 1
0
        public static IDLTypeException Create(string message, string IDLType, int index)
        {
            IDLTypeException ex = new IDLTypeException(message);

            ex.index    = index;
            ex.IDLType_ = IDLType;
            return(ex);
        }
Exemplo n.º 2
0
 public static IDLTypeException Create(string message, string IDLType, int index)
 {
     IDLTypeException ex = new IDLTypeException(message);
     ex.index = index;
     ex.IDLType_ = IDLType;
     return ex;
 }