com.rcore.restapi.exceptions.BadRequestApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-api Show documentation
Show all versions of rest-api Show documentation
REST API component for Clean Arch apps
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);
}
}