Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DeviceLostException.cs
Go to the documentation of this file.
1using System;
3
5
7public sealed class DeviceLostException : Exception
8{
10 {
11 }
12
13 public DeviceLostException(string message)
14 : base(message)
15 {
16 }
17
18 public DeviceLostException(string message, Exception inner)
19 : base(message, inner)
20 {
21 }
22
24 : base(info, context)
25 {
26 }
27}
DeviceLostException(SerializationInfo info, StreamingContext context)