nva.commons.apigateway.exceptions.UnprocessableContentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apigateway Show documentation
Show all versions of apigateway Show documentation
A commons library for the NVA project
package nva.commons.apigateway.exceptions;
public class UnprocessableContentException extends ApiGatewayException {
private static final int HTTP_UNPROCESSABLE_CONTENT = 422;
public UnprocessableContentException(String message) {
super(message);
}
@Override
protected Integer statusCode() {
return HTTP_UNPROCESSABLE_CONTENT;
}
}