Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ChannelClosedException.cs
Go to the documentation of this file.
2
4
7{
9 : base(System.SR.ChannelClosedException_DefaultMessage)
10 {
11 }
12
13 public ChannelClosedException(string? message)
14 : base(message)
15 {
16 }
17
19 : base(System.SR.ChannelClosedException_DefaultMessage, innerException)
20 {
21 }
22
24 : base(message, innerException)
25 {
26 }
27
29 : base(info, context)
30 {
31 }
32}
Definition SR.cs:7
ChannelClosedException(SerializationInfo info, StreamingContext context)
ChannelClosedException(string? message, Exception? innerException)