nl.pvanassen.steam.store.CookieException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of steam-api Show documentation
Show all versions of steam-api Show documentation
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