package fi.solita.clamav; /** * Created by dario on 19/10/17. */ /** * 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); } }