Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
RegexParseException.cs
Go to the documentation of this file.
2
4
7{
8 public RegexParseError Error { get; }
9
10 public int Offset { get; }
11
12 internal RegexParseException(RegexParseError error, int offset, string message)
13 : base(message)
14 {
15 Error = error;
16 Offset = offset;
17 }
18
23
25 {
26 base.GetObjectData(info, context);
28 }
29}
override void GetObjectData(SerializationInfo info, StreamingContext context)
RegexParseException(SerializationInfo info, StreamingContext context)
RegexParseException(RegexParseError error, int offset, string message)