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

jio.http.client.oauth.AccessTokenNotFound Maven / Gradle / Ivy

There is a newer version: 3.0.0-RC1
Show newest version
package jio.http.client.oauth;

import java.util.Objects;

/**
 * Exception that represents that the oauth access token is not found.
 */
@SuppressWarnings("serial")
public final class AccessTokenNotFound extends Exception {

  AccessTokenNotFound(String message) {
    super(Objects.requireNonNull(message));
  }

  AccessTokenNotFound(String message,
                      Throwable cause
                     ) {
    super(Objects.requireNonNull(message),
          Objects.requireNonNull(cause)
         );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy