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

com.rcore.restapi.exceptions.BadRequestApiException Maven / Gradle / Ivy

There is a newer version: 0.10.3
Show newest version
package com.rcore.restapi.exceptions;

public class BadRequestApiException extends BaseApiException {

    public BadRequestApiException(ExceptionDTO errors) {
        super(errors);
    }

    public BadRequestApiException(String title, String message, String domain, String details) {
        super(title, message, domain, details);
    }

    public BadRequestApiException(String message, String domain, String details) {
        super(message, domain, details);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy