Class ArgumentReservedKeywordException
- Namespace
- Cuemon
- Assembly
- Cuemon.Core.dll
The exception that is thrown when the value of an argument is a reserved keyword.
public class ArgumentReservedKeywordException : ArgumentOutOfRangeException, ISerializable
- Inheritance
-
ArgumentReservedKeywordException
- Implements
- Inherited Members
Constructors
ArgumentReservedKeywordException()
Initializes a new instance of the ArgumentReservedKeywordException class.
public ArgumentReservedKeywordException()
ArgumentReservedKeywordException(string)
Initializes a new instance of the ArgumentReservedKeywordException class.
public ArgumentReservedKeywordException(string paramName)
Parameters
paramNamestringThe name of the parameter that caused the exception.
ArgumentReservedKeywordException(string, Exception)
Initializes a new instance of the ArgumentReservedKeywordException class.
public ArgumentReservedKeywordException(string message, Exception innerException)
Parameters
messagestringThe message that describes the error.
innerExceptionExceptionThe 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.
ArgumentReservedKeywordException(string, string)
Initializes a new instance of the ArgumentReservedKeywordException class.
public ArgumentReservedKeywordException(string paramName, string message)
Parameters
paramNamestringThe name of the parameter that caused the exception.
messagestringThe message that describes the error.
ArgumentReservedKeywordException(string, string, string)
Initializes a new instance of the ArgumentReservedKeywordException class.
public ArgumentReservedKeywordException(string paramName, string actualValue, string message)