mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-24 10:01:35 +01:00
improved error handling
This commit is contained in:
@@ -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);
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
src/test/resources/velocity-1.7.jar
Normal file
BIN
src/test/resources/velocity-1.7.jar
Normal file
Binary file not shown.
Reference in New Issue
Block a user