All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkiverse.antivirus.runtime.AntivirusException Maven / Gradle / Ivy

The newest version!
package io.quarkiverse.antivirus.runtime;

/**
 * Exception raised when a malicious vile is detected.
 */
public class AntivirusException extends RuntimeException {

    private final String fileName;

    public AntivirusException(final String fileName, final String message) {
        super(message);
        this.fileName = fileName;
    }

    public AntivirusException(final String fileName, final String message, final Throwable cause) {
        super(message, cause);
        this.fileName = fileName;
    }

    public String getFileName() {
        return fileName;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy