add bone for file system
Test Workflow / test (push) Successful in 4s

This commit is contained in:
vladp
2025-12-15 19:49:09 +07:00
parent 07aad9f51c
commit 4ddf2f5dde
24 changed files with 871 additions and 7 deletions
@@ -0,0 +1,11 @@
package ru.soune.no_copy.exception;
public class FileUploadException extends RuntimeException {
public FileUploadException(String message) {
super(message);
}
public FileUploadException(String message, Throwable cause) {
super(message, cause);
}
}