
org.johnnei.enjin.EnjinException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enjin-api-spec Show documentation
Show all versions of enjin-api-spec Show documentation
The specification of the Enjin API
The newest version!
package org.johnnei.enjin;
/**
* An exception in the API which is either a logical exception or protocol exception
*/
public class EnjinException extends RuntimeException {
private static final long serialVersionUID = 7945040725150899041L;
public EnjinException(String message) {
super(message);
}
public EnjinException(String message, Exception e) {
super(message, e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy