![JAR search and dependency download from the Maven repository](/logo.png)
io.imunity.fido.service.FidoException Maven / Gradle / Ivy
/*
* Copyright (c) 2020 Bixbit - Krzysztof Benedyczak All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package io.imunity.fido.service;
/**
* Thrown when there is a problem with processing Fido registration or authentication.
* @author R. Ledzinski
*/
public class FidoException extends RuntimeException
{
public FidoException(String msg, Throwable cause)
{
super(msg, cause);
}
public FidoException(String msg)
{
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy