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

io.github.zeroone3010.yahueapi.HueApiException Maven / Gradle / Ivy

The newest version!
package io.github.zeroone3010.yahueapi;

public final class HueApiException extends RuntimeException {
  public HueApiException(final Throwable cause) {
    super(cause);
  }

  public HueApiException(final String message) {
    super(message);
  }

  public HueApiException(final String message, final Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy