
net.eulerframework.web.module.file.exception.AttachmentNotFoundException Maven / Gradle / Ivy
package net.eulerframework.web.module.file.exception;
@SuppressWarnings("serial")
public class AttachmentNotFoundException extends Exception {
public AttachmentNotFoundException() {
super();
}
public AttachmentNotFoundException(String message) {
super(message);
}
public AttachmentNotFoundException(String message, Throwable cause) {
super(message, cause);
}
public AttachmentNotFoundException(Throwable cause) {
super(cause);
}
protected AttachmentNotFoundException(String message, Throwable cause,
boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy