All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.saphyra.exceptionhandling.ErrorTranslationAdapter Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
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