
com.yandex.money.api.exceptions.InvalidRequestException 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;
/**
* Request is invalid.
*
* This exception is thrown when:
*
* - mandatory method parameters are missing or have invalid or inconsistent values;
* - request format does not meet the protocol;
* - request can not be parsed;
*
* You should change request parameters and send it again.
*
* @author Roman Tsirulnikov (romanvt@yamoney.ru)
*/
public final class InvalidRequestException extends Exception {
public InvalidRequestException(String error) {
super(error);
}
}