diff --git a/dependency-check-core/apidocs/org/owasp/dependencycheck/analyzer/ArchiveExtractionException.html b/dependency-check-core/apidocs/org/owasp/dependencycheck/analyzer/ArchiveExtractionException.html new file mode 100644 index 000000000..cf565dda5 --- /dev/null +++ b/dependency-check-core/apidocs/org/owasp/dependencycheck/analyzer/ArchiveExtractionException.html @@ -0,0 +1,305 @@ + + + + + + + +ArchiveExtractionException (Dependency-Check Core 1.0.5 API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.owasp.dependencycheck.analyzer +
+Class ArchiveExtractionException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by org.owasp.dependencycheck.analyzer.ArchiveExtractionException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class ArchiveExtractionException
extends Exception
+ + +

+An exception thrown when the analysis of a dependency fails. +

+ +

+

+
Author:
+
Jeremy Long (jeremy.long@owasp.org)
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
ArchiveExtractionException() + +
+          Creates a new AnalysisException.
ArchiveExtractionException(String msg) + +
+          Creates a new AnalysisException.
ArchiveExtractionException(String msg, + Throwable ex) + +
+          Creates a new DownloadFailedException.
ArchiveExtractionException(Throwable ex) + +
+          Creates a new AnalysisException.
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ArchiveExtractionException

+
+public ArchiveExtractionException()
+
+
Creates a new AnalysisException. +

+

+
+ +

+ArchiveExtractionException

+
+public ArchiveExtractionException(String msg)
+
+
Creates a new AnalysisException. +

+

+
Parameters:
msg - a message for the exception.
+
+
+ +

+ArchiveExtractionException

+
+public ArchiveExtractionException(Throwable ex)
+
+
Creates a new AnalysisException. +

+

+
Parameters:
ex - the cause of the failure.
+
+
+ +

+ArchiveExtractionException

+
+public ArchiveExtractionException(String msg,
+                                  Throwable ex)
+
+
Creates a new DownloadFailedException. +

+

+
Parameters:
msg - a message for the exception.
ex - the cause of the failure.
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012-2013 OWASP. All Rights Reserved. + + diff --git a/dependency-check-core/apidocs/org/owasp/dependencycheck/analyzer/class-use/ArchiveExtractionException.html b/dependency-check-core/apidocs/org/owasp/dependencycheck/analyzer/class-use/ArchiveExtractionException.html new file mode 100644 index 000000000..a6d00a08e --- /dev/null +++ b/dependency-check-core/apidocs/org/owasp/dependencycheck/analyzer/class-use/ArchiveExtractionException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class org.owasp.dependencycheck.analyzer.ArchiveExtractionException (Dependency-Check Core 1.0.5 API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
org.owasp.dependencycheck.analyzer.ArchiveExtractionException

+
+No usage of org.owasp.dependencycheck.analyzer.ArchiveExtractionException +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012-2013 OWASP. All Rights Reserved. + + diff --git a/dependency-check-core/apidocs/org/owasp/dependencycheck/data/NoDataException.html b/dependency-check-core/apidocs/org/owasp/dependencycheck/data/NoDataException.html new file mode 100644 index 000000000..0dd749212 --- /dev/null +++ b/dependency-check-core/apidocs/org/owasp/dependencycheck/data/NoDataException.html @@ -0,0 +1,306 @@ + + + + + + + +NoDataException (Dependency-Check Core 1.0.5 API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.owasp.dependencycheck.data +
+Class NoDataException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.io.IOException
+              extended by org.owasp.dependencycheck.data.NoDataException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class NoDataException
extends IOException
+ + +

+An exception used when the data needed does not exist to perform analysis. +

+ +

+

+
Author:
+
Jeremy Long (jeremy.long@owasp.org)
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
NoDataException() + +
+          Creates a new NoDataException.
NoDataException(String msg) + +
+          Creates a new NoDataException.
NoDataException(String msg, + Throwable ex) + +
+          Creates a new NoDataException.
NoDataException(Throwable ex) + +
+          Creates a new NoDataException.
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+NoDataException

+
+public NoDataException()
+
+
Creates a new NoDataException. +

+

+
+ +

+NoDataException

+
+public NoDataException(String msg)
+
+
Creates a new NoDataException. +

+

+
Parameters:
msg - a message for the exception.
+
+
+ +

+NoDataException

+
+public NoDataException(Throwable ex)
+
+
Creates a new NoDataException. +

+

+
Parameters:
ex - the cause of the exception.
+
+
+ +

+NoDataException

+
+public NoDataException(String msg,
+                       Throwable ex)
+
+
Creates a new NoDataException. +

+

+
Parameters:
msg - a message for the exception.
ex - the cause of the exception.
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012-2013 OWASP. All Rights Reserved. + + diff --git a/dependency-check-core/apidocs/org/owasp/dependencycheck/data/class-use/NoDataException.html b/dependency-check-core/apidocs/org/owasp/dependencycheck/data/class-use/NoDataException.html new file mode 100644 index 000000000..a4e8955bb --- /dev/null +++ b/dependency-check-core/apidocs/org/owasp/dependencycheck/data/class-use/NoDataException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class org.owasp.dependencycheck.data.NoDataException (Dependency-Check Core 1.0.5 API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
org.owasp.dependencycheck.data.NoDataException

+
+No usage of org.owasp.dependencycheck.data.NoDataException +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+Copyright © 2012-2013 OWASP. All Rights Reserved. + + diff --git a/dependency-check-core/cobertura/org.owasp.dependencycheck.analyzer.ArchiveExtractionException.html b/dependency-check-core/cobertura/org.owasp.dependencycheck.analyzer.ArchiveExtractionException.html new file mode 100644 index 000000000..018156920 --- /dev/null +++ b/dependency-check-core/cobertura/org.owasp.dependencycheck.analyzer.ArchiveExtractionException.html @@ -0,0 +1,150 @@ + + + + +Coverage Report + + + + +
Coverage Report - org.owasp.dependencycheck.analyzer.ArchiveExtractionException
+
 
+ + + + +
Classes in this File Line Coverage Branch Coverage Complexity
ArchiveExtractionException
0%
0/8
N/A
1
+
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 1  
 /*
 2  
  * This file is part of dependency-check-core.
 3  
  *
 4  
  * Dependency-check-core is free software: you can redistribute it and/or modify it
 5  
  * under the terms of the GNU General Public License as published by the Free
 6  
  * Software Foundation, either version 3 of the License, or (at your option) any
 7  
  * later version.
 8  
  *
 9  
  * Dependency-check-core is distributed in the hope that it will be useful, but
 10  
  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  
  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 12  
  * details.
 13  
  *
 14  
  * You should have received a copy of the GNU General Public License along with
 15  
  * dependency-check-core. If not, see http://www.gnu.org/licenses/.
 16  
  *
 17  
  * Copyright (c) 2013 Jeremy Long. All Rights Reserved.
 18  
  */
 19  
 package org.owasp.dependencycheck.analyzer;
 20  
 
 21  
 /**
 22  
  * An exception thrown when the analysis of a dependency fails.
 23  
  *
 24  
  * @author Jeremy Long (jeremy.long@owasp.org)
 25  
  */
 26  
 public class ArchiveExtractionException extends Exception {
 27  
 
 28  
     /**
 29  
      * The serial version UID for serialization.
 30  
      */
 31  
     private static final long serialVersionUID = 1L;
 32  
 
 33  
     /**
 34  
      * Creates a new AnalysisException.
 35  
      */
 36  
     public ArchiveExtractionException() {
 37  0
         super();
 38  0
     }
 39  
 
 40  
     /**
 41  
      * Creates a new AnalysisException.
 42  
      *
 43  
      * @param msg a message for the exception.
 44  
      */
 45  
     public ArchiveExtractionException(String msg) {
 46  0
         super(msg);
 47  0
     }
 48  
 
 49  
     /**
 50  
      * Creates a new AnalysisException.
 51  
      *
 52  
      * @param ex the cause of the failure.
 53  
      */
 54  
     public ArchiveExtractionException(Throwable ex) {
 55  0
         super(ex);
 56  0
     }
 57  
 
 58  
     /**
 59  
      * Creates a new DownloadFailedException.
 60  
      *
 61  
      * @param msg a message for the exception.
 62  
      * @param ex the cause of the failure.
 63  
      */
 64  
     public ArchiveExtractionException(String msg, Throwable ex) {
 65  0
         super(msg, ex);
 66  0
     }
 67  
 }
+ + + + diff --git a/dependency-check-core/cobertura/org.owasp.dependencycheck.data.NoDataException.html b/dependency-check-core/cobertura/org.owasp.dependencycheck.data.NoDataException.html new file mode 100644 index 000000000..7370f19b9 --- /dev/null +++ b/dependency-check-core/cobertura/org.owasp.dependencycheck.data.NoDataException.html @@ -0,0 +1,154 @@ + + + + +Coverage Report + + + + +
Coverage Report - org.owasp.dependencycheck.data.NoDataException
+
 
+ + + + +
Classes in this File Line Coverage Branch Coverage Complexity
NoDataException
0%
0/8
N/A
1
+
 
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
 1  
 /*
 2  
  * This file is part of dependency-check-core.
 3  
  *
 4  
  * Dependency-check-core is free software: you can redistribute it and/or modify it
 5  
  * under the terms of the GNU General Public License as published by the Free
 6  
  * Software Foundation, either version 3 of the License, or (at your option) any
 7  
  * later version.
 8  
  *
 9  
  * Dependency-check-core is distributed in the hope that it will be useful, but
 10  
  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 11  
  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
 12  
  * details.
 13  
  *
 14  
  * You should have received a copy of the GNU General Public License along with
 15  
  * dependency-check-core. If not, see http://www.gnu.org/licenses/.
 16  
  *
 17  
  * Copyright (c) 2013 Jeremy Long. All Rights Reserved.
 18  
  */
 19  
 package org.owasp.dependencycheck.data;
 20  
 
 21  
 import java.io.IOException;
 22  
 
 23  
 /**
 24  
  * An exception used when the data needed does not exist to perform analysis.
 25  
  *
 26  
  * @author Jeremy Long (jeremy.long@owasp.org)
 27  
  */
 28  
 public class NoDataException extends IOException {
 29  
 
 30  
     /**
 31  
      * The serial version uid.
 32  
      */
 33  
     private static final long serialVersionUID = 1L;
 34  
 
 35  
     /**
 36  
      * Creates a new NoDataException.
 37  
      */
 38  
     public NoDataException() {
 39  0
         super();
 40  0
     }
 41  
 
 42  
     /**
 43  
      * Creates a new NoDataException.
 44  
      *
 45  
      * @param msg a message for the exception.
 46  
      */
 47  
     public NoDataException(String msg) {
 48  0
         super(msg);
 49  0
     }
 50  
 
 51  
     /**
 52  
      * Creates a new NoDataException.
 53  
      *
 54  
      * @param ex the cause of the exception.
 55  
      */
 56  
     public NoDataException(Throwable ex) {
 57  0
         super(ex);
 58  0
     }
 59  
 
 60  
     /**
 61  
      * Creates a new NoDataException.
 62  
      *
 63  
      * @param msg a message for the exception.
 64  
      * @param ex the cause of the exception.
 65  
      */
 66  
     public NoDataException(String msg, Throwable ex) {
 67  0
         super(msg, ex);
 68  0
     }
 69  
 }
+ + + + diff --git a/dependency-check-core/xref/org/owasp/dependencycheck/analyzer/ArchiveExtractionException.html b/dependency-check-core/xref/org/owasp/dependencycheck/analyzer/ArchiveExtractionException.html new file mode 100644 index 000000000..87f5252c6 --- /dev/null +++ b/dependency-check-core/xref/org/owasp/dependencycheck/analyzer/ArchiveExtractionException.html @@ -0,0 +1,81 @@ + + + + +ArchiveExtractionException xref + + + +
View Javadoc
+
+1   /*
+2    * This file is part of dependency-check-core.
+3    *
+4    * Dependency-check-core is free software: you can redistribute it and/or modify it
+5    * under the terms of the GNU General Public License as published by the Free
+6    * Software Foundation, either version 3 of the License, or (at your option) any
+7    * later version.
+8    *
+9    * Dependency-check-core is distributed in the hope that it will be useful, but
+10   * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+11   * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+12   * details.
+13   *
+14   * You should have received a copy of the GNU General Public License along with
+15   * dependency-check-core. If not, see http://www.gnu.org/licenses/.
+16   *
+17   * Copyright (c) 2013 Jeremy Long. All Rights Reserved.
+18   */
+19  package org.owasp.dependencycheck.analyzer;
+20  
+21  /**
+22   * An exception thrown when the analysis of a dependency fails.
+23   *
+24   * @author Jeremy Long (jeremy.long@owasp.org)
+25   */
+26  public class ArchiveExtractionException extends Exception {
+27  
+28      /**
+29       * The serial version UID for serialization.
+30       */
+31      private static final long serialVersionUID = 1L;
+32  
+33      /**
+34       * Creates a new AnalysisException.
+35       */
+36      public ArchiveExtractionException() {
+37          super();
+38      }
+39  
+40      /**
+41       * Creates a new AnalysisException.
+42       *
+43       * @param msg a message for the exception.
+44       */
+45      public ArchiveExtractionException(String msg) {
+46          super(msg);
+47      }
+48  
+49      /**
+50       * Creates a new AnalysisException.
+51       *
+52       * @param ex the cause of the failure.
+53       */
+54      public ArchiveExtractionException(Throwable ex) {
+55          super(ex);
+56      }
+57  
+58      /**
+59       * Creates a new DownloadFailedException.
+60       *
+61       * @param msg a message for the exception.
+62       * @param ex the cause of the failure.
+63       */
+64      public ArchiveExtractionException(String msg, Throwable ex) {
+65          super(msg, ex);
+66      }
+67  }
+
+
+ + diff --git a/dependency-check-core/xref/org/owasp/dependencycheck/data/NoDataException.html b/dependency-check-core/xref/org/owasp/dependencycheck/data/NoDataException.html new file mode 100644 index 000000000..477914a5f --- /dev/null +++ b/dependency-check-core/xref/org/owasp/dependencycheck/data/NoDataException.html @@ -0,0 +1,83 @@ + + + + +NoDataException xref + + + +
View Javadoc
+
+1   /*
+2    * This file is part of dependency-check-core.
+3    *
+4    * Dependency-check-core is free software: you can redistribute it and/or modify it
+5    * under the terms of the GNU General Public License as published by the Free
+6    * Software Foundation, either version 3 of the License, or (at your option) any
+7    * later version.
+8    *
+9    * Dependency-check-core is distributed in the hope that it will be useful, but
+10   * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+11   * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+12   * details.
+13   *
+14   * You should have received a copy of the GNU General Public License along with
+15   * dependency-check-core. If not, see http://www.gnu.org/licenses/.
+16   *
+17   * Copyright (c) 2013 Jeremy Long. All Rights Reserved.
+18   */
+19  package org.owasp.dependencycheck.data;
+20  
+21  import java.io.IOException;
+22  
+23  /**
+24   * An exception used when the data needed does not exist to perform analysis.
+25   *
+26   * @author Jeremy Long (jeremy.long@owasp.org)
+27   */
+28  public class NoDataException extends IOException {
+29  
+30      /**
+31       * The serial version uid.
+32       */
+33      private static final long serialVersionUID = 1L;
+34  
+35      /**
+36       * Creates a new NoDataException.
+37       */
+38      public NoDataException() {
+39          super();
+40      }
+41  
+42      /**
+43       * Creates a new NoDataException.
+44       *
+45       * @param msg a message for the exception.
+46       */
+47      public NoDataException(String msg) {
+48          super(msg);
+49      }
+50  
+51      /**
+52       * Creates a new NoDataException.
+53       *
+54       * @param ex the cause of the exception.
+55       */
+56      public NoDataException(Throwable ex) {
+57          super(ex);
+58      }
+59  
+60      /**
+61       * Creates a new NoDataException.
+62       *
+63       * @param msg a message for the exception.
+64       * @param ex the cause of the exception.
+65       */
+66      public NoDataException(String msg, Throwable ex) {
+67          super(msg, ex);
+68      }
+69  }
+
+
+ +