Skip to main content

ExceptionEventArgs(String, Exception) Constructor

Creates a new ExceptionEventArgs object.

Namespace: DevExpress.XtraEditors.Controls

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public ExceptionEventArgs(
    string errorText,
    Exception exception
)

Parameters

Name Type Description
errorText String

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

exception Exception

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

Remarks

This constructor sets the ExceptionEventArgs.WindowCaption property to the “Error” string and the ExceptionEventArgs.ExceptionMode property to ExceptionMode.DisplayError.

See Also