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

com.badlogic.gdx.pay.FetchItemInformationException Maven / Gradle / Ivy

There is a newer version: 1.3.7
Show newest version
package com.badlogic.gdx.pay;

/**
 * This exception is given to {@link PurchaseObserver#handleInstallError(Throwable)} when fetching item information
 * failed.
 * 

* Please note: It is up to the underlying service to return an error. Some services may just return an empty item * list without reporting a failure. */ public class FetchItemInformationException extends GdxPayException { public FetchItemInformationException() { super("Failed to fetch item list - check your connection"); } public FetchItemInformationException(String message) { super("Failed to fetch item list - check your connection (" + message + ")"); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy