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

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

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

/**
 * Thrown by a purchase on an item that is invalid or unavailable
 */
public class InvalidItemException extends GdxPayException {
    public InvalidItemException() {
        this("");
    }

    public InvalidItemException(String identifier) {
        super("Purchase failed, invalid product identifier " + identifier);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy