Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
InvalidEnumArgumentException.cs
Go to the documentation of this file.
3
5
7[TypeForwardedFrom("System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : this(null)
12 {
13 }
14
15 public InvalidEnumArgumentException(string? message)
16 : base(message)
17 {
18 }
19
21 : base(message, innerException)
22 {
23 }
24
27 {
28 if (enumClass == null)
29 {
30 throw new ArgumentNullException("enumClass");
31 }
32 }
33
35 : base(info, context)
36 {
37 }
38}
InvalidEnumArgumentException(string? message, Exception? innerException)
InvalidEnumArgumentException(string? argumentName, int invalidValue, Type enumClass)
InvalidEnumArgumentException(SerializationInfo info, StreamingContext context)
Definition SR.cs:7