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

com.webauthn4j.verifier.exception.CredentialIdTooLongException Maven / Gradle / Ivy

There is a newer version: 0.9.2.RELEASE
Show newest version
package com.webauthn4j.verifier.exception;

import org.jetbrains.annotations.Nullable;

public class CredentialIdTooLongException extends VerificationException {

    public CredentialIdTooLongException(@Nullable String message, @Nullable Throwable cause) {
        super(message, cause);
    }

    public CredentialIdTooLongException(@Nullable String message) {
        super(message);
    }

    public CredentialIdTooLongException(@Nullable Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy