com.launchkey.sdk.auth.UserCreationException 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;
/**
* Copyright (C) 2015 LaunchKey, Inc. All Rights Reserved.
*
* @author Adam Englander
*/
public class UserCreationException extends Exception {
private final String code;
public UserCreationException(String message, String code) {
super(message);
this.code = code;
}
public UserCreationException(String message, Throwable throwable, String code) {
super(message, throwable);
this.code = code;
}
public String getCode() {
return code;
}
}