Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
BarrierPostPhaseException.cs
Go to the documentation of this file.
3
4namespace System.Threading;
5
7[TypeForwardedFrom("System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : this((string?)null)
12 {
13 }
14
19
20 public BarrierPostPhaseException(string? message)
21 : this(message, null)
22 {
23 }
24
26 : base((message == null) ? System.SR.BarrierPostPhaseException : message, innerException)
27 {
28 }
29
31 : base(info, context)
32 {
33 }
34}
Definition SR.cs:7
BarrierPostPhaseException(SerializationInfo info, StreamingContext context)
BarrierPostPhaseException(string? message, Exception? innerException)