added serialUID to fix warning

This commit is contained in:
gatmeister 2016-09-16 00:02:45 +08:00
parent dc164ce86d
commit 443f43e488

View File

@ -5,5 +5,6 @@ import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(value = HttpStatus.FORBIDDEN, reason="To show an example of a custom message") @ResponseStatus(value = HttpStatus.FORBIDDEN, reason="To show an example of a custom message")
public class ForbiddenException extends RuntimeException { public class ForbiddenException extends RuntimeException {
private static final long serialVersionUID = 6826605655586311552L;
} }