All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.launchkey.sdk.auth.UserCreationException Maven / Gradle / Ivy

Go to download

SDK for interacting with the LaunchKey distributed authentication and authorization platform

There is a newer version: 4.0.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy