Files
Java/src/main/java/com/company/auth/exception/DeviceNotFoundException.java
David Melendez 1c026c7be8 init commit
2026-01-14 22:41:30 +01:00

24 lines
555 B
Java

/**
* 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);
}
}