
org.johnnei.enjin.EnjinAuthenticationException 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;
/**
* Indicates that the API request can not be properly authenticated in the current context.
*
*/
public class EnjinAuthenticationException extends EnjinException {
public EnjinAuthenticationException(String message) {
super(message);
}
public EnjinAuthenticationException(String message, Exception e) {
super(message, e);
}
/**
*
*/
private static final long serialVersionUID = 4150658941724013300L;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy