Class UnexpectedAnalysisException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.owasp.dependencycheck.analyzer.exception.UnexpectedAnalysisException
All Implemented Interfaces:
Serializable

public class UnexpectedAnalysisException extends RuntimeException
An exception intended to be used in situations that should never occur.
Author:
Jeremy Long
See Also:
  • Constructor Details

    • UnexpectedAnalysisException

      public UnexpectedAnalysisException(Throwable ex)
      Wraps an exception.
      Parameters:
      ex - the exception to wrap
    • UnexpectedAnalysisException

      public UnexpectedAnalysisException(String msg)
      Wraps an exception and message.
      Parameters:
      msg - the error message
    • UnexpectedAnalysisException

      public UnexpectedAnalysisException(String msg, Throwable ex)
      Wraps an exception and message.
      Parameters:
      msg - the error message
      ex - the exception to wrap