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

io.rocketbase.commons.exception.BadRequestException Maven / Gradle / Ivy

package io.rocketbase.commons.exception;

import io.rocketbase.commons.dto.ErrorResponse;
import lombok.Getter;

public class BadRequestException extends RuntimeException {

    @Getter
    private final ErrorResponse errorResponse;

    public BadRequestException(ErrorResponse errorResponse) {
        super(errorResponse.getMessage());
        this.errorResponse = errorResponse;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy