Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
OverflowException.cs
Go to the documentation of this file.
1
using
System.Runtime.CompilerServices
;
2
using
System.Runtime.Serialization
;
3
4
namespace
System
;
5
6
[
Serializable
]
7
[
TypeForwardedFrom
(
"mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
)]
8
public
class
OverflowException
:
ArithmeticException
9
{
10
public
OverflowException
()
11
:
base
(
SR
.Arg_OverflowException)
12
{
13
base.HResult
= -2146233066;
14
}
15
16
public
OverflowException
(
string
? message)
17
:
base
(message)
18
{
19
base.HResult
= -2146233066;
20
}
21
22
public
OverflowException
(
string
? message,
Exception
?
innerException
)
23
:
base
(message,
innerException
)
24
{
25
base.HResult
= -2146233066;
26
}
27
28
protected
OverflowException
(
SerializationInfo
info
,
StreamingContext
context)
29
:
base
(
info
, context)
30
{
31
}
32
}
System.ArithmeticException
Definition
ArithmeticException.cs:9
System.Exception
Definition
Exception.cs:15
System.OverflowException.OverflowException
OverflowException()
Definition
OverflowException.cs:10
System.OverflowException.OverflowException
OverflowException(SerializationInfo info, StreamingContext context)
Definition
OverflowException.cs:28
System.OverflowException.OverflowException
OverflowException(string? message, Exception? innerException)
Definition
OverflowException.cs:22
System.OverflowException.OverflowException
OverflowException(string? message)
Definition
OverflowException.cs:16
System.OverflowException
Definition
OverflowException.cs:9
System.Runtime.Serialization.SerializationInfo
Definition
SerializationInfo.cs:7
System.SR
Definition
SR.cs:7
System.Data.IsolationLevel.Serializable
@ Serializable
System.Runtime.CompilerServices
Definition
NullablePublicOnlyAttribute.cs:3
System.Runtime.Serialization.CollectionKind.Dictionary
@ Dictionary
System.Runtime.Serialization
Definition
SerializationGuard.cs:3
System.ExceptionArgument.info
@ info
System
Definition
BlockingCollection.cs:8
System.Runtime.Serialization.StreamingContext
Definition
StreamingContext.cs:6
source
System.Private.CoreLib
System
OverflowException.cs
Generated by
1.10.0