Hi Maxim,
Thanks for the reply.
I thought I attached the screenshot. See below:
I want a situation where I can change this caption “backgroundWorkProgress.executionError”
I think the error comes from the message.properties
See the class io.jmix.ui.executor.LocalizedTaskWrapper, method: showExecutionError
Also, see the message.properties : The message does not have the group id which is the package where it is being called from.
protected void showExecutionError(Exception ex) {
Screen ownerFrame = wrappedTask.getOwnerScreen();
if (ownerFrame != null) {
Dialogs dialogs = getScreenContext().getDialogs();
dialogs.createExceptionDialog()
.withThrowable(ex)
.withCaption(messages.getMessage(LocalizedTaskWrapper.class, "backgroundWorkProgress.executionError"))
.withMessage(ex.getLocalizedMessage())
.show();
}
}