Files
no-copy/src/main/java/ru/soune/nocopy/exception/FileEntityNotFoundException.java
T
vladp 7e2dd4a654
Test Workflow / test (push) Successful in 3s
fix path
2025-12-17 22:37:46 +07:00

11 lines
337 B
Java

package ru.soune.nocopy.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);
}
}