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

com.github.saphyra.exceptionhandling.exception.BadRequestException Maven / Gradle / Ivy

package com.github.saphyra.exceptionhandling.exception;

import org.springframework.http.HttpStatus;

public class BadRequestException extends RestException {
    public BadRequestException(String logMessage) {
        super(HttpStatus.BAD_REQUEST, logMessage);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy