Class InvalidTypeException
Exception that is thrown when the driver expected a type and other was provided
Inheritance
InvalidTypeException
Assembly: Cassandra.dll
Syntax
public class InvalidTypeException : DriverException, ISerializable
Constructors
InvalidTypeException(string)
Declaration
public InvalidTypeException(string msg)
Parameters
Type |
Name |
Description |
string |
msg |
|
InvalidTypeException(string, Exception)
Declaration
public InvalidTypeException(string msg, Exception cause)
Parameters
InvalidTypeException(string, object, object[])
Declaration
public InvalidTypeException(string paramName, object receivedType, object[] expectedType)
Parameters
Properties
ExpectedType
Declaration
public object[] ExpectedType { get; }
Property Value
ParamName
Declaration
public string ParamName { get; }
Property Value
ReceivedType
Declaration
public object ReceivedType { get; }
Property Value
Implements