com.yandex.money.api.exceptions.InvalidTokenException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ym-java-epr-sdk Show documentation
Show all versions of ym-java-epr-sdk Show documentation
This Java library contains classes that allows you to do payments using Yandex.Money public API.
The newest version!
package com.yandex.money.api.exceptions;
/**
* Token is invalid.
*
* Possible causes:
*
* - token does not exist;
* - token is overdue;
* - token has been revoked.
*
*
* The app should ask for a new token.
*
* @author Roman Tsirulnikov ([email protected])
* @see com.yandex.money.api.net.OAuth2Authorization
* @see com.yandex.money.api.net.OAuth2Session
*/
public final class InvalidTokenException extends Exception {
public InvalidTokenException(String error) {
super(error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy