com.github.saphyra.exceptionhandling.ErrorTranslationAdapter Maven / Gradle / Ivy
package com.github.saphyra.exceptionhandling;
import javax.servlet.http.HttpServletRequest;
import java.util.Map;
public interface ErrorTranslationAdapter {
default String translateMessage(HttpServletRequest request, String errorCode, Map params) {
return "Could not translate errorCode " + errorCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy