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

com.alogient.cameleon.sdk.membership.util.exception.DuplicateUserException Maven / Gradle / Ivy

The newest version!
package com.alogient.cameleon.sdk.membership.util.exception;

/**
 * Thrown if user is not found
 */
public class DuplicateUserException extends Exception {
    /**
     * Serial version unique identifier
     */
    private static final long serialVersionUID = 8343836752127593490L;

    public DuplicateUserException() {
    }

    public DuplicateUserException(String s) {
        super(s);
    }

    public DuplicateUserException(String s, Throwable throwable) {
        super(s, throwable);
    }

    public DuplicateUserException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy