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
paramName
StringThe 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
message
StringThe message that describes the error.
innerException
ExceptionThe 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
paramName
StringThe name of the parameter that caused the exception.
message
StringThe 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)