31 lines
1.7 KiB
C#
31 lines
1.7 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Data.SqlTypes
|
|
{
|
|
/// <summary>The exception that is thrown when the <see langword="Value" /> property of a <see cref="N:System.Data.SqlTypes" /> structure is set to null.</summary>
|
|
// Token: 0x020000B2 RID: 178
|
|
[Token(Token = "0x20000B2")]
|
|
[Serializable]
|
|
public sealed class SqlNullValueException : SqlTypeException
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNullValueException" /> class with a system-supplied message that describes the error.</summary>
|
|
// Token: 0x06000ABC RID: 2748 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000ABC")]
|
|
[Address(RVA = "0xBD7AD0", Offset = "0xBD6AD0", VA = "0x180BD7AD0")]
|
|
public SqlNullValueException()
|
|
{
|
|
}
|
|
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Data.SqlTypes.SqlNullValueException" /> 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: 0x06000ABD RID: 2749 RVA: 0x0000206A File Offset: 0x0000026A
|
|
[Token(Token = "0x6000ABD")]
|
|
[Address(RVA = "0xBD7AB0", Offset = "0xBD6AB0", VA = "0x180BD7AB0")]
|
|
public SqlNullValueException(string message, Exception e)
|
|
{
|
|
}
|
|
}
|
|
}
|