improved error handling

This commit is contained in:
Jeremy Long
2012-09-10 15:44:37 -04:00
parent 4147801074
commit 559d35b519
2 changed files with 30 additions and 0 deletions

View File

@@ -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);
}
}

Binary file not shown.