Max/Backend/loginApi Ajout mock Users et Tokens #62

Merged
Maxime merged 16 commits from Max/Backend/loginApi into master 2024-03-08 16:50:23 +01:00
Showing only changes of commit 37d24c59e7 - Show all commits

View File

@ -0,0 +1,12 @@
package ovh.herisson.Clyde.Responses;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
public class UnauthorizedResponse extends ResponseEntity<String> {
public UnauthorizedResponse(String message) {
super(message,HttpStatus.UNAUTHORIZED);
}
}