updated javadoc

Former-commit-id: 3b650e1cada9aa78c1b7995ae15286f829e25d6a
This commit is contained in:
Jeremy Long
2013-11-17 08:00:32 -05:00
parent 18bca6352d
commit e3186e6c4c

View File

@@ -19,7 +19,7 @@
package org.owasp.dependencycheck.analyzer; 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) * @author Jeremy Long (jeremy.long@owasp.org)
*/ */
@@ -31,14 +31,14 @@ public class ArchiveExtractionException extends Exception {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** /**
* Creates a new AnalysisException. * Creates a new ArchiveExtractionException.
*/ */
public ArchiveExtractionException() { public ArchiveExtractionException() {
super(); super();
} }
/** /**
* Creates a new AnalysisException. * Creates a new ArchiveExtractionException.
* *
* @param msg a message for the exception. * @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. * @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 msg a message for the exception.
* @param ex the cause of the failure. * @param ex the cause of the failure.