Class BizFormTableNameNotUniqueException
- Namespace
- CMS.OnlineForms
- Assembly
- CMS.OnlineForms.dll
Thrown when biz form table name is not unique.
public class BizFormTableNameNotUniqueException : BizFormException
- Inheritance
-
objectExceptionBizFormTableNameNotUniqueException
- Extension Methods
Constructors
BizFormTableNameNotUniqueException()
Initializes a new instance of the BizFormTableNameNotUniqueException class with default values.
public BizFormTableNameNotUniqueException()
BizFormTableNameNotUniqueException(string)
Initializes a new instance of the BizFormTableNameNotUniqueException class with a specified error message.
public BizFormTableNameNotUniqueException(string message)
Parameters
messagestringThe message that describes the error.
BizFormTableNameNotUniqueException(string, Exception)
Initializes a new instance of the BizFormTableNameNotUniqueException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public BizFormTableNameNotUniqueException(string message, Exception inner)
Parameters
messagestringThe message that describes the error.
innerExceptionThe exception that is the cause of the current exception, or a null reference if no inner exception is specified.
BizFormTableNameNotUniqueException(string, string)
Initializes a new instance of the BizFormTableNameNotUniqueException class with a specified error message and a table name that is the cause of this exception.
public BizFormTableNameNotUniqueException(string message, string tableName)
Parameters
messagestringThe message that describes the error.
tableNamestringThe table name that is the cause of this exception.
BizFormTableNameNotUniqueException(string, string, Exception)
Initializes a new instance of the BizFormTableNameNotUniqueException class with a specified error message, a table name and a reference to the inner exception that is the cause of this exception.
public BizFormTableNameNotUniqueException(string message, string tableName, Exception inner)
Parameters
messagestringThe message that describes the error.
tableNamestringThe table name that is the cause of this exception.
innerExceptionThe exception that is the cause of the current exception, or a null reference if no inner exception is specified.
Properties
TableName
Gets the table name.
public virtual string TableName { get; }
Property Value
- string