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

ErrorHandling.SetPageError(Exception) Method

Handles the specified exception.

Namespace: DevExpress.ExpressApp.Web

Assembly: DevExpress.ExpressApp.Web.v19.1.dll

Declaration

public void SetPageError(
    Exception error
)

Parameters

Name Type Description
error Exception

A System.Exception object that is the error that occurred.

Remarks

This method performs the following:

  • creates the ErrorInfo object corresponding to the specified exception;
  • registers the ErrorInfo object for the current context (the registered object is used by the ErrorInfoControl);
  • sends an alert to the application administrator, if possible (see ErrorHandling.CanSendAlertToAdmin);
  • logs the exception information to the application log file (excluding tracing information).

An example of using this method is provided in the Error Handling in ASP.NET and Mobile Applications topic.

See Also