init commit
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user