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