Refactoring et amélioration des endpoints friendship

This commit is contained in:
DahoudG
2024-10-10 00:39:01 +00:00
parent 800fdd4d12
commit 2c7d671588
16 changed files with 1101 additions and 196 deletions

View File

@@ -0,0 +1,15 @@
package com.lions.dev.exception;
/**
* Exception levée lorsque la relation d'amitié n'est pas trouvée.
*/
public class FriendshipNotFoundException extends RuntimeException {
public FriendshipNotFoundException(String message) {
super(message);
}
public FriendshipNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}