add fileentity
Test Workflow / test (push) Successful in 4s

This commit is contained in:
vladp
2025-12-17 01:19:48 +07:00
parent 58b4a2f95f
commit 9e8c7f0fa1
11 changed files with 921 additions and 4 deletions
@@ -0,0 +1,11 @@
package ru.soune.no_copy.exception;
public class FileEntityNotFoundException extends RuntimeException {
public FileEntityNotFoundException(String fileId) {
super("FileEntity not found with ID: " + fileId);
}
public FileEntityNotFoundException(String message, Throwable cause) {
super(message, cause);
}
}