losty.netatmo.exceptions.NetatmoException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of netatmo-api Show documentation
Show all versions of netatmo-api Show documentation
Small adaption of the original Netatmo Android API that can be used with plain Java (>=v7) instead of Android.
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);
}
}