com.rcore.restapi.exceptions.NotFoundApiException 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 NotFoundApiException extends BaseApiException {
public NotFoundApiException(ExceptionDTO errors) {
super(errors);
}
public NotFoundApiException(String title, String message, String domain, String details) {
super(title, message, domain, details);
}
public NotFoundApiException(String message, String domain, String details) {
super(message, domain, details);
}
}