QueryBuilderExceptionHandler Class
Enables you to handle server-side errors in the Web Query Builder.
Namespace: DevExpress.XtraReports.Web.QueryBuilder.Services
Assembly: DevExpress.XtraReports.v24.1.Web.dll
NuGet Package: DevExpress.Web.Reporting.Common
Declaration
public class QueryBuilderExceptionHandler :
ExceptionHandler,
IQueryBuilderExceptionHandler,
IExceptionHandler
Remarks
The QueryBuilderExceptionHandler class has the following methods inherited from the base class:
- GetUnknownExceptionMessage to handle exceptions of non-standard types, for which the Query Builder shows the standard ‘Internal Server Error’ message;
- GetFaultExceptionMessage to handle FaultException;
- GetExceptionMessage to handle all possible errors independent of their types.
The code snippet below demonstrates how to create a descendant from this class and override the GetUnknownExceptionMessage method to return an actual exception message.
using System;
using DevExpress.XtraReports.Web.QueryBuilder.Services;
public class CustomQueryBuilderExceptionHandler : QueryBuilderExceptionHandler {
public override string GetUnknownExceptionMessage(Exception ex) {
return ex.Message;
}
}
To register the implemented exception handler, use the static DefaultQueryBuilderContainer.Register method at the application’s startup as shown below:
void Application_Start(object sender, EventArgs e) {
// ...
DevExpress.XtraReports.Web.QueryBuilder.DefaultQueryBuilderContainer.
Register<IQueryBuilderExceptionHandler, CustomQueryBuilderExceptionHandler>();
}
Inheritance
Object
ExceptionHandler
QueryBuilderExceptionHandler
See Also