ExceptionService(ILogger<ExceptionService>) Constructor
In This Article
Initializes a new instance of the ExceptionService class with specified settings.
Namespace: DevExpress.ExpressApp.Blazor.Services
Assembly: DevExpress.ExpressApp.Blazor.v24.2.dll
NuGet Package: DevExpress.ExpressApp.Blazor
#Declaration
public ExceptionService(
ILogger<ExceptionService> logger
)
#Parameters
Name | Type | Description |
---|---|---|
logger | ILogger<Exception |
The logger to which the processed exceptions are written. |
#Remarks
Implement this constructor in the derived classes to log your exceptions.
Refer to the ExceptionService class description for example.
See Also