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,23 @@
/**
* Device Not Found Exception
*
* Exception thrown when a requested device is not found.
*
* @author David Valera Melendez <david@valera-melendez.de>
* @since February 2025
*/
package com.company.auth.exception;
/**
* Exception thrown when a trusted device is not found
*/
public class DeviceNotFoundException extends RuntimeException {
public DeviceNotFoundException(String message) {
super(message);
}
public DeviceNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}