io.automatiko.engine.service.exception.UnknownExceptionMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automatiko-service Show documentation
Show all versions of automatiko-service Show documentation
Workflow as a Service - processes and decisions with Automatiko Engine
The newest version!
package io.automatiko.engine.service.exception;
import java.util.Collections;
import jakarta.ws.rs.core.Response;
import jakarta.ws.rs.ext.ExceptionMapper;
import jakarta.ws.rs.ext.Provider;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@Provider
public class UnknownExceptionMapper extends BaseExceptionMapper
implements ExceptionMapper {
private static final Logger LOGGER = LoggerFactory.getLogger(UnknownExceptionMapper.class);
@Override
public Response toResponse(Exception exception) {
LOGGER.error("Unexpected error processing request", exception);
return internalError(Collections.singletonMap(MESSAGE, exception.getMessage()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy