init commit

This commit is contained in:
David Melendez
2026-01-14 22:41:30 +01:00
parent 0ea321b6d8
commit 1c026c7be8
92 changed files with 15836 additions and 0 deletions

View File

@@ -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);
}
}