Basically our scenario is like this: the document file is fetched from external API (this happens in IFileStorage.ReadFileAsync). There could be error or exception from this fetching. So we would like to render our custom message and view, instead of rendering GroupDoc Viewer view.
Please advise if this can be done.
At the moment the client app handles all the unsuccessful responses and shows a modal with the error message that comes in response. Even if you return redirect it will be handled but you won’t be redirected. We’ll consider implementing error handling in a such way so the users can manage the client app behavior.
By default, when the API responds with an error code, a popup displaying the exception message is automatically shown.
To override this behavior, you can implement the IErrorMessageProvider interface to log errors or return a custom error message.
Here’s an example of a custom error message provider implementation:
using GroupDocs.Viewer.UI.Api;
//...
public class MyErrorMessageProvider : IErrorMessageProvider
{
public string GetErrorMessage(Exception exception, ErrorContext context)
{
return "This is my custom error message...";
}
}
To register the custom error message provider:
using GroupDocs.Viewer.UI.Api;
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddSingleton<IErrorMessageProvider, MyErrorMessageProvider>();
The screenshot below shows an error popup with a custom error message: