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

nl.pvanassen.steam.store.CookieException Maven / Gradle / Ivy

Go to download

A Java API to access the Steam community market through the HTTP interface. This may be against the TOS so be careful using it!

The newest version!
package nl.pvanassen.steam.store;

/**
 * Exception thrown when steam is bitching about cookies
 * 
 * @author Paul van Assen
 */
public class CookieException extends RuntimeException {
    /**
     * Default constructor with build in message
     */
    public CookieException() {
        super("Error posting data, got cookie error back from Steam");
    }

    CookieException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy