Class CSDBInvalidDatatypeCastException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.mcpdbwizard.pub.CSException
com.mcpdbwizard.pub.CSDBInvalidDatatypeCastException
- All Implemented Interfaces:
Serializable
Thrown when an attempt is made to retrieve a value in a form that it can not be converted to.
Copyright 2003-2026 ATB Consultancy Services Ltd (formerly Orinda Software Ltd, Dublin, Ireland)
- Version:
- 7
- Author:
- devteam@mcpdbwizard.com
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionThe data type we were trying to convert fromThe data type we were trying to convert to -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructorCSDBInvalidDatatypeCastException(String theExceptionMessage, String theCastedDatatype, String theCasteeDatatype) Constructer that takes parameters. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
theCastedDatatype
The data type we were trying to convert from -
theCasteeDatatype
The data type we were trying to convert to
-
-
Constructor Details
-
CSDBInvalidDatatypeCastException
public CSDBInvalidDatatypeCastException()Default constructor -
CSDBInvalidDatatypeCastException
public CSDBInvalidDatatypeCastException(String theExceptionMessage, String theCastedDatatype, String theCasteeDatatype) Constructer that takes parameters.- Parameters:
theExceptionMessage- An application generated messagetheCastedDatatype- The data type we were trying to convert fromtheCasteeDatatype- The data type we were trying to convert to
-