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
messagestringException's message.
innerExceptionInner exception.
ObjectTypeColumnNotFoundException(string, string)
Creates a new instance of ObjectTypeColumnNotFoundException.
public ObjectTypeColumnNotFoundException(string message, string objectType = null)
Parameters
messagestringException's message.
objectTypestringThe 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
messagestringException's message.
objectTypestringThe object type whose column wasn't found.
innerExceptionInner exception.
Properties
ObjectType
Gets the object type whose column wasn't found.
public string ObjectType { get; protected set; }
Property Value
- string