diff --git a/src/main/java/org/codesecure/dependencycheck/utils/DownloadFailedException.java b/src/main/java/org/codesecure/dependencycheck/utils/DownloadFailedException.java new file mode 100644 index 000000000..f88fa8dac --- /dev/null +++ b/src/main/java/org/codesecure/dependencycheck/utils/DownloadFailedException.java @@ -0,0 +1,30 @@ +/* + * To change this template, choose Tools | Templates + * and open the template in the editor. + */ +package org.codesecure.dependencycheck.utils; + +import java.io.IOException; + +/** + * + * @author Jeremy Long (jeremy.long@gmail.com) + */ +public class DownloadFailedException extends IOException { + + private static final long serialVersionUID = 1L; + + public DownloadFailedException() { + super(); + } + + public DownloadFailedException(String msg) { + super(msg); + } + public DownloadFailedException(Throwable ex) { + super(ex); + } + public DownloadFailedException(String msg, Throwable ex) { + super(msg,ex); + } +} diff --git a/src/test/resources/velocity-1.7.jar b/src/test/resources/velocity-1.7.jar new file mode 100644 index 000000000..ae936d3d9 Binary files /dev/null and b/src/test/resources/velocity-1.7.jar differ