com.naharoo.commons.mstoolkit.rest.exceptionhandler.RestExceptionHandlerProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ms-toolkit-rest-exception-handler-starter Show documentation
Show all versions of ms-toolkit-rest-exception-handler-starter Show documentation
Common exceptions handler as a Spring Boot Starter
package com.naharoo.commons.mstoolkit.rest.exceptionhandler;
import org.springframework.boot.context.properties.ConfigurationProperties;
import java.util.Map;
@ConfigurationProperties(prefix = "ms-toolkit.rest-exception-handler.handlers")
public class RestExceptionHandlerProperties {
private Map enabled;
public Map getEnabled() {
return enabled;
}
public void setEnabled(final Map enabled) {
this.enabled = enabled;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy