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

io.katharsis.resource.exception.RequestBodyNotFoundException Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.katharsis.resource.exception;

import io.katharsis.dispatcher.controller.HttpMethod;
import io.katharsis.errorhandling.ErrorData;
import io.katharsis.errorhandling.exception.KatharsisMappableException;
import io.katharsis.response.HttpStatus;

public class RequestBodyNotFoundException extends KatharsisMappableException {

    private static final String TITLE = "Request body not found";

    public RequestBodyNotFoundException(HttpMethod method, String resourceName) {
        super(HttpStatus.BAD_REQUEST_400, ErrorData.builder()
            .setStatus(String.valueOf(HttpStatus.BAD_REQUEST_400))
            .setTitle(TITLE)
            .setDetail("Request body not found, " + method.name() + " method, resource name " + resourceName)
        .build());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy