Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
HPackDecodingException.cs
Go to the documentation of this file.
2
4
6internal sealed class HPackDecodingException : Exception
7{
8 public HPackDecodingException(string message)
9 : base(message)
10 {
11 }
12
14 : base(message, innerException)
15 {
16 }
17
19 : base(info, context)
20 {
21 }
22}
HPackDecodingException(string message, Exception innerException)
HPackDecodingException(SerializationInfo info, StreamingContext context)