io.github.hayesroach.clamav.ClamAVSizeLimitException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clamav-client Show documentation
Show all versions of clamav-client Show documentation
Simple Java client for using clamd INSTREAM scanning in your application.
The newest version!
package io.github.hayesroach.clamav;
/**
* Thrown if clamd size limit is exceeded during scanning.
*
* See clamd man page for further information.
*/
public class ClamAVSizeLimitException extends RuntimeException {
private static final long serialVersionUID = 1L;
public ClamAVSizeLimitException(String msg) {
super(msg);
}
}