2025-12-15 19:49:09 +07:00
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|