Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
RuntimeWrappedException.cs
Go to the documentation of this file.
2
4
6[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
7public sealed class RuntimeWrappedException : Exception
8{
9 private object _wrappedException;
10
12
19
21 : base(info, context)
22 {
23 _wrappedException = info.GetValue("WrappedException", typeof(object));
24 }
25
27 {
28 base.GetObjectData(info, context);
29 info.AddValue("WrappedException", _wrappedException, typeof(object));
30 }
31}
RuntimeWrappedException(SerializationInfo info, StreamingContext context)
override void GetObjectData(SerializationInfo info, StreamingContext context)
Definition SR.cs:7