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

net.nitrado.api.common.exceptions.NitrapiException Maven / Gradle / Ivy

package net.nitrado.api.common.exceptions;

/**
 * This is a superclass of NitrapiHttpException, NitrapiConcurrencyException, NitrapiMaintenanceException and
 * NitrapiErrorException so that you can catch all at once if you don't want to distinguish between those.
 */
public class NitrapiException extends RuntimeException {
    public NitrapiException(String message) {
        super(message);
    }

    public NitrapiException(Throwable exception) {
        super(exception);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy