init commit

This commit is contained in:
David Melendez
2026-01-14 22:41:30 +01:00
parent 0ea321b6d8
commit 1c026c7be8
92 changed files with 15836 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
/**
* Invalid Verification Code Exception
*
* Thrown when an invalid verification code is provided during device verification.
*
* @author David Valera Melendez <david@valera-melendez.de>
* @since February 2025
*/
package com.company.auth.exception;
/**
* Exception thrown when an invalid verification code is encountered
*/
public class InvalidVerificationCodeException extends RuntimeException {
/**
* Constructs a new InvalidVerificationCodeException with the specified detail message.
*
* @param message the detail message
*/
public InvalidVerificationCodeException(String message) {
super(message);
}
/**
* Constructs a new InvalidVerificationCodeException with the specified detail message and cause.
*
* @param message the detail message
* @param cause the cause
*/
public InvalidVerificationCodeException(String message, Throwable cause) {
super(message, cause);
}
}