We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f5baca commit ce0f241Copy full SHA for ce0f241
src/BootstrapBlazor/Components/ErrorLogger/BootstrapBlazorErrorBoundary.cs
@@ -53,17 +53,8 @@ class BootstrapBlazorErrorBoundary : ErrorBoundaryBase
53
/// <inheritdoc/>
54
/// </summary>
55
/// <param name="exception"></param>
56
- /// <returns></returns>
57
- /// <exception cref="NotImplementedException"></exception>
58
protected override async Task OnErrorAsync(Exception exception)
59
{
60
- // 由框架调用
61
- if (OnErrorHandleAsync != null)
62
- {
63
- await OnErrorHandleAsync(Logger, exception);
64
- return;
65
- }
66
-
67
if (ShowToast)
68
69
await ToastService.Error(ToastTitle, exception.Message);
0 commit comments