Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IsolatedStorageException.cs
Go to the documentation of this file.
3
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11
13 : base(System.SR.IsolatedStorage_Exception)
14 {
15 base.HResult = -2146233264;
16 }
17
18 public IsolatedStorageException(string? message)
19 : base(message)
20 {
21 base.HResult = -2146233264;
22 }
23
24 public IsolatedStorageException(string? message, Exception? inner)
25 : base(message, inner)
26 {
27 base.HResult = -2146233264;
28 }
29
31 : base(info, context)
32 {
33 }
34}
IsolatedStorageException(string? message, Exception? inner)
IsolatedStorageException(SerializationInfo info, StreamingContext context)
Definition SR.cs:7