protected BackendError(ushort id, ErrorServiety serviety, IEnumerable <string> msgs) : this(new(id, serviety), msgs)
/// <summary> /// 创建实例 /// </summary> /// <param name="ncode"></param> /// <param name="serviety"></param> public ErrorCode(ushort ncode, ErrorServiety serviety) { NumericCode = ncode; Serviety = serviety; }
internal ParserError(ushort errc, ErrorServiety serviety, IEnumerable <string> msgs, string explain) : base(new(errc, serviety), msgs)