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

com.yubico.u2f.exceptions.DeviceCompromisedException Maven / Gradle / Ivy

There is a newer version: 0.19.12
Show newest version
package com.yubico.u2f.exceptions;

import com.yubico.u2f.data.DeviceRegistration;

public class DeviceCompromisedException extends Exception {
    private final DeviceRegistration registration;

    public DeviceCompromisedException(DeviceRegistration registration, String message, Throwable cause) {
        super(message, cause);
        this.registration = registration;
    }

    public DeviceCompromisedException(DeviceRegistration registration, String message) {
        super(message);
        this.registration = registration;
    }

    public DeviceRegistration getDeviceRegistration() {
        return registration;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy