Class DataClassNotFoundException
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
This exception is thrown when data class is not found.
public class DataClassNotFoundException : Exception
- Inheritance
-
objectExceptionDataClassNotFoundException
- Extension Methods
Constructors
DataClassNotFoundException()
Creates a new instance of DataClassNotFoundException.
public DataClassNotFoundException()
DataClassNotFoundException(string, string, Exception)
Creates a new instance of DataClassNotFoundException.
public DataClassNotFoundException(string message, string className, Exception inner)
Parameters
message
stringException's message.
className
stringName of the class that wasn't found.
inner
ExceptionInner exception.
DataClassNotFoundException(string, string, string)
Creates a new instance of DataClassNotFoundException.
public DataClassNotFoundException(string message, string className, string objectType = null)
Parameters
message
stringException's message.
className
stringName of the class that wasn't found.
objectType
stringThe object type whose class wasn't found.
DataClassNotFoundException(string, string, string, Exception)
Creates a new instance of DataClassNotFoundException.
public DataClassNotFoundException(string message, string className, string objectType, Exception inner)
Parameters
message
stringException's message.
className
stringName of the class that wasn't found.
objectType
stringThe object type whose class wasn't found.
inner
ExceptionInner exception.
Properties
ClassName
Gets name of the class that wasn't found.
public string ClassName { get; protected set; }
Property Value
- string
ObjectType
Gets the object type whose class wasn't found.
public string ObjectType { get; protected set; }
Property Value
- string