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

com.yandex.money.api.exceptions.InvalidRequestException 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;

/**
 * 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); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy