com.yandex.money.api.exceptions.InsufficientScopeException 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;
/**
* Thrown when {@link com.yandex.money.api.net.OAuth2Session} is authorized with an access token
* that has no required permissions ({@link com.yandex.money.api.model.Scope}) to perform an operation
* (call API method).
*
* If your application requires to perform this operation you should receive a new token with
* sufficient scopes.
*
* @author Roman Tsirulnikov ([email protected])
* @see com.yandex.money.api.model.Scope
* @see com.yandex.money.api.net.OAuth2Session
*/
public final class InsufficientScopeException extends Exception {
public InsufficientScopeException(String error) {
super(error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy