Table of Contents

Class DataClassNotFoundException

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

This exception is thrown when data class is not found.

public class DataClassNotFoundException : Exception
Inheritance
object
Exception
DataClassNotFoundException
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 string

Exception's message.

className string

Name of the class that wasn't found.

inner Exception

Inner exception.

DataClassNotFoundException(string, string, string)

Creates a new instance of DataClassNotFoundException.

public DataClassNotFoundException(string message, string className, string objectType = null)

Parameters

message string

Exception's message.

className string

Name of the class that wasn't found.

objectType string

The 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 string

Exception's message.

className string

Name of the class that wasn't found.

objectType string

The object type whose class wasn't found.

inner Exception

Inner 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