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

31 lines
1.3 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Data.SqlTypes
{
/// <summary>The exception that is thrown when you set a value into a <see cref="N:System.Data.SqlTypes" /> structure would truncate that value.</summary>
// Token: 0x020000B3 RID: 179
[Token(Token = "0x20000B3")]
[Serializable]
public sealed class SqlTruncateException : SqlTypeException
{
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTruncateException" /> class.</summary>
// Token: 0x06000ABE RID: 2750 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000ABE")]
[Address(RVA = "0xBDB2A0", Offset = "0xBDA2A0", VA = "0x180BDB2A0")]
public SqlTruncateException()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlTruncateException" /> class with a specified error message and a reference to the <see cref="T:System.Exception" />.</summary>
/// <param name="message">The error message that explains the reason for the exception.</param>
/// <param name="e">A reference to an inner <see cref="T:System.Exception" />.</param>
// Token: 0x06000ABF RID: 2751 RVA: 0x0000206A File Offset: 0x0000026A
[Token(Token = "0x6000ABF")]
[Address(RVA = "0xBDB2D0", Offset = "0xBDA2D0", VA = "0x180BDB2D0")]
public SqlTruncateException(string message, Exception e)
{
}
}
}