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

com.yandex.money.api.exceptions.InsufficientScopeException Maven / Gradle / Ivy

Go to download

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