Class ObjectTypeColumnNotFoundException
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
The ObjectTypeColumnNotFoundException is thrown when an object type is without column definition.
public class ObjectTypeColumnNotFoundException : Exception
- Inheritance
-
objectExceptionObjectTypeColumnNotFoundException
- Extension Methods
Constructors
ObjectTypeColumnNotFoundException()
Creates a new instance of ObjectTypeColumnNotFoundException.
public ObjectTypeColumnNotFoundException()
ObjectTypeColumnNotFoundException(string, Exception)
Creates a new instance of ObjectTypeColumnNotFoundException.
public ObjectTypeColumnNotFoundException(string message, Exception inner)
Parameters
message
stringException's message.
inner
ExceptionInner exception.
ObjectTypeColumnNotFoundException(string, string)
Creates a new instance of ObjectTypeColumnNotFoundException.
public ObjectTypeColumnNotFoundException(string message, string objectType = null)
Parameters
message
stringException's message.
objectType
stringThe object type whose column wasn't found.
ObjectTypeColumnNotFoundException(string, string, Exception)
Creates a new instance of ObjectTypeColumnNotFoundException.
public ObjectTypeColumnNotFoundException(string message, string objectType, Exception inner)
Parameters
message
stringException's message.
objectType
stringThe object type whose column wasn't found.
inner
ExceptionInner exception.
Properties
ObjectType
Gets the object type whose column wasn't found.
public string ObjectType { get; protected set; }
Property Value
- string