Pierre Tellier 04a73073c1
All checks were successful
Format / formatting (push) Successful in 6s
CI / build (push) Successful in 11s
feat: switch to a service layer architecture
2025-02-18 22:15:14 +01:00

8 lines
183 B
Java

package enseirb.myinpulse.exception;
public class UserNotFoundException extends RuntimeException {
public UserNotFoundException(String message) {
super(message);
}
}