NCP-3 add usercontent crud's,dto,exception and start restcontroller

This commit is contained in:
vladp
2025-11-26 13:03:20 +07:00
parent 11b74e046d
commit d9faa311a9
10 changed files with 159 additions and 3 deletions
@@ -0,0 +1,7 @@
package ru.soune.no_copy.exception;
public class ContentNotFoundException extends RuntimeException {
public ContentNotFoundException(String message) {
super(message);
}
}