Skip to content

Handle ResultHandlerService errors #412

Open
@jvalkeal

Description

@jvalkeal

If handling fails then errors are not handled and shell basically exits. Maybe do something like:

if (result != NO_INPUT && !(result instanceof ExitRequest)) {
	try {
		resultHandlerService.handle(result);
	} catch (Exception e) {
		resultHandlerService.handle(e);
	}
}

Unless there's better approach.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions