11 lines
338 B
Java
11 lines
338 B
Java
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);
|
|
}
|
|
} |