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

losty.netatmo.exceptions.NetatmoException Maven / Gradle / Ivy

Go to download

Small adaption of the original Netatmo Android API that can be used with plain Java (>=v7) instead of Android.

There is a newer version: 0.9.1
Show newest version
package losty.netatmo.exceptions;

public class NetatmoException extends RuntimeException {

    public NetatmoException(String message) {
        super(message);
    }

    public NetatmoException(Exception exception) {
        super(exception);
    }

    public NetatmoException(String message, Exception exception) {
        super(message, exception);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy