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
messagestringException's message.
classNamestringName of the class that wasn't found.
innerExceptionInner exception.
DataClassNotFoundException(string, string, string)
Creates a new instance of DataClassNotFoundException.
public DataClassNotFoundException(string message, string className, string objectType = null)
  Parameters
messagestringException's message.
classNamestringName of the class that wasn't found.
objectTypestringThe 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
messagestringException's message.
classNamestringName of the class that wasn't found.
objectTypestringThe object type whose class wasn't found.
innerExceptionInner 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