Table of Contents

Class ReservedKeywordException

Namespace
Cuemon
Assembly
Cuemon.Core.dll

The exception that is thrown when the value of an argument is a reserved keyword.

public class ReservedKeywordException : ArgumentOutOfRangeException, ISerializable
Inheritance
Object
Exception
SystemException
ArgumentException
ArgumentOutOfRangeException
ReservedKeywordException
Implements
ISerializable
Inherited Members
ArgumentOutOfRangeException.ThrowIfEqual<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfGreaterThan<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfGreaterThanOrEqual<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfLessThan<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfLessThanOrEqual<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfNegative<T>(T, String)
ArgumentOutOfRangeException.ThrowIfNegativeOrZero<T>(T, String)
ArgumentOutOfRangeException.ThrowIfNotEqual<T>(T, T, String)
ArgumentOutOfRangeException.ThrowIfZero<T>(T, String)
ArgumentOutOfRangeException.ActualValue
ArgumentOutOfRangeException.Message
ArgumentException.ThrowIfNullOrEmpty(String, String)
ArgumentException.ThrowIfNullOrWhiteSpace(String, String)
ArgumentException.ParamName
Exception.GetBaseException()
Exception.GetType()
Exception.ToString()
Exception.Data
Exception.HelpLink
Exception.HResult
Exception.InnerException
Exception.Source
Exception.StackTrace
Exception.TargetSite
Exception.SerializeObjectState

Constructors

ReservedKeywordException()

Initializes a new instance of the ReservedKeywordException class.

public ReservedKeywordException()

ReservedKeywordException(String)

Initializes a new instance of the ReservedKeywordException class.

public ReservedKeywordException(string paramName)

Parameters

paramName String

The name of the parameter that caused the exception.

ReservedKeywordException(String, Exception)

Initializes a new instance of the ReservedKeywordException class.

public ReservedKeywordException(string message, Exception innerException)

Parameters

message String

The message that describes the error.

innerException Exception

The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

ReservedKeywordException(String, String)

Initializes a new instance of the ReservedKeywordException class.

public ReservedKeywordException(string paramName, string message)

Parameters

paramName String

The name of the parameter that caused the exception.

message String

The message that describes the error.

ReservedKeywordException(String, String, String)

Initializes a new instance of the ReservedKeywordException class.

public ReservedKeywordException(string paramName, string actualValue, string message)

Parameters

paramName String

The name of the parameter that caused the exception.

actualValue String

The value of the argument that causes this exception.

message String

The message that describes the error.