24 lines
555 B
Java
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);
|
|
}
|
|
}
|