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

com.yoti.api.client.ProfileException Maven / Gradle / Ivy

The newest version!
package com.yoti.api.client;

/**
 * Signals an issue during profile retrieval
 *
 */
public class ProfileException extends Exception {
    private static final long serialVersionUID = 1440096271615095912L;

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy