package com.dragonsoft.tryapp.common.exceptions;

/**
 * Used to throw exceptions when a user cannot be identified.
 */
public class UserAuthenticatorException extends TryException {

    public UserAuthenticatorException() {
        super();
    }

    public UserAuthenticatorException(String arg0, Throwable arg1) {
        super(arg0, arg1);
    }

    public UserAuthenticatorException(String string) {
        super(string);
    }

    public UserAuthenticatorException(TryException e) {
        super(e);
    }

} // UserAuthenticatorException