com.launchkey.sdk.auth.AuthenticationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchkey-sdk Show documentation
Show all versions of launchkey-sdk Show documentation
SDK for interacting with the LaunchKey distributed authentication and authorization platform
package com.launchkey.sdk.auth;
public class AuthenticationException extends Exception {
public AuthenticationException(String message, String code) {
super(message + ". Error code: " + code);
}
}