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

com.flowthings.client.exception.AuthorizationException Maven / Gradle / Ivy

package com.flowthings.client.exception;

public class AuthorizationException extends FlowthingsException {

  public AuthorizationException() {
  }

  public AuthorizationException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
    super(message, cause, enableSuppression, writableStackTrace);
  }

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

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

  public AuthorizationException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy