init commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package com.company.auth.exception;
|
||||
|
||||
public class RegistrationException extends RuntimeException {
|
||||
public RegistrationException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
public RegistrationException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user