com.codedisaster.steamworks.SteamException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of steamworks4j Show documentation
Show all versions of steamworks4j Show documentation
Java wrapper to access the Steamworks API.
package com.codedisaster.steamworks;
@SuppressWarnings("unused")
public class SteamException extends Exception {
public SteamException() {
super();
}
public SteamException(String message) {
super(message);
}
public SteamException(String message, Throwable throwable) {
super(message, throwable);
}
public SteamException(Throwable throwable) {
super(throwable);
}
}