/** * Device Not Found Exception * * Exception thrown when a requested device is not found. * * @author David Valera Melendez * @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); } }