init commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.company.auth.exception;
|
||||
|
||||
/**
|
||||
* Exception thrown when user is not found
|
||||
*/
|
||||
public class UserNotFoundException extends RuntimeException {
|
||||
|
||||
public UserNotFoundException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public UserNotFoundException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user