2025-12-17 22:37:46 +07:00
|
|
|
package ru.soune.nocopy.exception;
|
2025-12-17 01:19:48 +07:00
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|