use of org.kie.kogito.process.ProcessInstanceNotFoundException in project kogito-runtimes by kiegroup.
the class BaseExceptionHandlerTest method testMapProcessInstanceNotFoundException.
@Test
void testMapProcessInstanceNotFoundException() {
Object response = tested.mapException(new ProcessInstanceNotFoundException("processInstanceId"));
assertThat(response).isEqualTo(notFoundResponse);
}
Aggregations