dev.samstevens.totp.exceptions.CodeGenerationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of totp Show documentation
Show all versions of totp Show documentation
A library to help implement time-based one time passwords to enable MFA.
package dev.samstevens.totp.exceptions;
public class CodeGenerationException extends Exception {
public CodeGenerationException(String message, Throwable cause) {
super(message, cause);
}
}