added new endpoints, getUser, getUserHistories, getBookmarks

This commit is contained in:
heyethereum
2024-07-20 01:10:28 +08:00
parent f7e592f8ec
commit ee3180dbea
33 changed files with 261 additions and 55 deletions

View File

@@ -0,0 +1,7 @@
package com.safeqr.app.exceptions;
public class CustomNotFoundExceptions extends RuntimeException {
public CustomNotFoundExceptions(String message){
super(message);
}
}