jio.http.client.oauth.AccessTokenNotFound Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jio-http Show documentation
Show all versions of jio-http Show documentation
Functional and reactive http client in Java
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)
);
}
}