Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

59 lines
2.9 KiB
C#

using System;
using System.Runtime.Serialization;
using Cpp2IlInjected;
namespace System.Data.SqlTypes
{
/// <summary>The base exception class for the <see cref="N:System.Data.SqlTypes" />.</summary>
// Token: 0x020000B1 RID: 177
[Token(Token = "0x20000B1")]
[Serializable]
public class SqlTypeException : SystemException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class.</summary>
// Token: 0x06000AB7 RID: 2743 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000AB7")]
[Address(RVA = "0xBDB440", Offset = "0xBDA440", VA = "0x180BDB440")]
public SqlTypeException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class with a specified error message.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
// Token: 0x06000AB8 RID: 2744 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000AB8")]
[Address(RVA = "0xBDB4B0", Offset = "0xBDA4B0", VA = "0x180BDB4B0")]
public SqlTypeException(string message)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
/// <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
/// <param name="e">The exception that is the cause of the current exception. If the innerException parameter is not <see langword="null" />, the current exception is raised in a <see langword="catch" /> block that handles the inner exception.</param>
// Token: 0x06000AB9 RID: 2745 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000AB9")]
[Address(RVA = "0xBDB490", Offset = "0xBDA490", VA = "0x180BDB490")]
public SqlTypeException(string message, Exception e)
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTypeException" /> class with serialized data.</summary>
/// <param name="si">The object that holds the serialized object data.</param>
/// <param name="sc">The contextual information about the source or destination.</param>
// Token: 0x06000ABA RID: 2746 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000ABA")]
[Address(RVA = "0xBDB3B0", Offset = "0xBDA3B0", VA = "0x180BDB3B0")]
protected SqlTypeException(SerializationInfo si, StreamingContext sc)
{
}
// Token: 0x06000ABB RID: 2747 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000ABB")]
[Address(RVA = "0xBDB2F0", Offset = "0xBDA2F0", VA = "0x180BDB2F0")]
private static SerializationInfo SqlTypeExceptionSerialization(SerializationInfo si, StreamingContext sc)
{
return null;
}
}
}