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

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

There is a newer version: 0.10.3
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy