Skip to content

Instantly share code, notes, and snippets.

@WalterInSH
WalterInSH / MyExceptionHandler.java
Last active January 1, 2016 07:28
Spring mvc central exception handler
import com.walterinsh.datacompass.exception.OperationForbiddenException;
import org.apache.commons.lang.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.ControllerAdvice;
import org.springframework.web.bind.annotation.ExceptionHandler;
/**