50 lines
2.2 KiB
C#
50 lines
2.2 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Runtime.Serialization;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System
|
|
{
|
|
/// <summary>The exception that is thrown when a floating-point value is positive infinity, negative infinity, or Not-a-Number (NaN).</summary>
|
|
// Token: 0x0200011E RID: 286
|
|
[Token(Token = "0x200011E")]
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public class NotFiniteNumberException : ArithmeticException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class.</summary>
|
|
// Token: 0x06000A6E RID: 2670 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A6E")]
|
|
[Address(RVA = "0x26027E0", Offset = "0x26015E0", VA = "0x1826027E0")]
|
|
public NotFiniteNumberException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.NotFiniteNumberException" /> class with serialized data.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination.</param>
|
|
// Token: 0x06000A6F RID: 2671 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A6F")]
|
|
[Address(RVA = "0x2602840", Offset = "0x2601640", VA = "0x182602840")]
|
|
protected NotFiniteNumberException(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
/// <summary>Sets the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the invalid number and additional exception information.</summary>
|
|
/// <param name="info">The object that holds the serialized object data.</param>
|
|
/// <param name="context">The contextual information about the source or destination.</param>
|
|
/// <exception cref="T:System.ArgumentNullException">The <paramref name="info" /> object is <see langword="null" />.</exception>
|
|
// Token: 0x06000A70 RID: 2672 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x6000A70")]
|
|
[Address(RVA = "0x26026D0", Offset = "0x26014D0", VA = "0x1826026D0", Slot = "10")]
|
|
public override void GetObjectData(SerializationInfo info, StreamingContext context)
|
|
{
|
|
}
|
|
|
|
// Token: 0x04000464 RID: 1124
|
|
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
|
|
[Token(Token = "0x4000464")]
|
|
private double _offendingNumber;
|
|
}
|
|
}
|