Class ReservedKeywordException
The exception that is thrown when the value of an argument is a reserved keyword.
Inheritance
Implements
Inherited Members
Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
[Serializable]
public class ReservedKeywordException : ArgumentOutOfRangeException, ISerializable
Constructors
| Improve this Doc View SourceReservedKeywordException()
Initializes a new instance of the ReservedKeywordException class.
Declaration
public ReservedKeywordException()
ReservedKeywordException(SerializationInfo, StreamingContext)
Initializes a new instance of the ReservedKeywordException class.
Declaration
protected ReservedKeywordException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
SerializationInfo | info | The object that holds the serialized object data. |
StreamingContext | context | The contextual information about the source or destination. |
ReservedKeywordException(String)
Initializes a new instance of the ReservedKeywordException class.
Declaration
public ReservedKeywordException(string paramName)
Parameters
Type | Name | Description |
---|---|---|
String | paramName | The name of the parameter that caused the exception. |
ReservedKeywordException(String, Exception)
Initializes a new instance of the ReservedKeywordException class.
Declaration
public ReservedKeywordException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error. |
Exception | innerException | 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.
Declaration
public ReservedKeywordException(string paramName, string message)
Parameters
Type | Name | Description |
---|---|---|
String | paramName | The name of the parameter that caused the exception. |
String | message | The message that describes the error. |
ReservedKeywordException(String, String, String)
Initializes a new instance of the ReservedKeywordException class.
Declaration
public ReservedKeywordException(string paramName, string actualValue, string message)
Parameters
Type | Name | Description |
---|---|---|
String | paramName | The name of the parameter that caused the exception. |
String | actualValue | The value of the argument that causes this exception. |
String | message | The message that describes the error. |