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