Skip to main content
A newer version of this page is available. .

ExceptionEventArgs(String, String, Exception, ExceptionMode) Constructor

Creates a new ExceptionEventArgs object.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v19.2.dll

Declaration

public ExceptionEventArgs(
    string errorText,
    string windowCaption,
    Exception exception,
    ExceptionMode exceptionMode
)

Parameters

Name Type Description
errorText String

A string value specifying the error description. This value is assigned to the ExceptionEventArgs.ErrorText property.

windowCaption String

A string value specifying the error message box caption. This value is assigned to the ExceptionEventArgs.WindowCaption property.

exception Exception

A Exception object representing the exception that raised the event. This value is assigned to the ExceptionEventArgs.Exception property.

exceptionMode ExceptionMode

A ExceptionMode enumeration value specifying the response to entering an invalid value. This value is assigned to the ExceptionEventArgs.ExceptionMode property.

See Also