Class AnalysisException

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    SearchException

    @ThreadSafe
    public class AnalysisException
    extends java.lang.Exception
    An exception thrown when the analysis of a dependency fails.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      AnalysisException()
      Creates a new AnalysisException.
      AnalysisException​(java.lang.String msg)
      Creates a new AnalysisException.
      AnalysisException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new AnalysisException.
      AnalysisException​(java.lang.Throwable ex)
      Creates a new AnalysisException.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • AnalysisException

        public AnalysisException()
        Creates a new AnalysisException.
      • AnalysisException

        public AnalysisException​(java.lang.String msg)
        Creates a new AnalysisException.
        Parameters:
        msg - a message for the exception.
      • AnalysisException

        public AnalysisException​(java.lang.Throwable ex)
        Creates a new AnalysisException.
        Parameters:
        ex - the cause of the failure.
      • AnalysisException

        public AnalysisException​(java.lang.String msg,
                                 java.lang.Throwable ex)
        Creates a new AnalysisException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the failure.