updated javadoc

Former-commit-id: 03c6ba2d0d9cc03f3b9efd6fdb9a8d4972ac4f5d
This commit is contained in:
Jeremy Long
2013-11-17 08:00:32 -05:00
parent 510c693871
commit dccb84ded8

View File

@@ -19,7 +19,7 @@
package org.owasp.dependencycheck.analyzer;
/**
* An exception thrown when the analysis of a dependency fails.
* An exception thrown when files in an archive cannot be extracted.
*
* @author Jeremy Long (jeremy.long@owasp.org)
*/
@@ -31,14 +31,14 @@ public class ArchiveExtractionException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Creates a new AnalysisException.
* Creates a new ArchiveExtractionException.
*/
public ArchiveExtractionException() {
super();
}
/**
* Creates a new AnalysisException.
* Creates a new ArchiveExtractionException.
*
* @param msg a message for the exception.
*/
@@ -47,7 +47,7 @@ public class ArchiveExtractionException extends Exception {
}
/**
* Creates a new AnalysisException.
* Creates a new ArchiveExtractionException.
*
* @param ex the cause of the failure.
*/
@@ -56,7 +56,7 @@ public class ArchiveExtractionException extends Exception {
}
/**
* Creates a new DownloadFailedException.
* Creates a new ArchiveExtractionException.
*
* @param msg a message for the exception.
* @param ex the cause of the failure.