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

com.verisec.frejaeid.client.exceptions.FrejaEidClientInternalException Maven / Gradle / Ivy

package com.verisec.frejaeid.client.exceptions;

/**
 * Occurs when client returns an internal error.
 *
 */
public class FrejaEidClientInternalException extends Exception {

    public FrejaEidClientInternalException(String message) {
        super(message);
    }

    public FrejaEidClientInternalException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy