added new endpoints delete scanned history, delete all scanned histories, delete bookmarks, delete all bookmarks

This commit is contained in:
heyethereum
2024-07-20 22:12:22 +08:00
parent ee3180dbea
commit 77541c2a9d
20 changed files with 226 additions and 32 deletions

View File

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