Class SearchException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class SearchException
    extends AnalysisException
    An exception thrown when an online searching fails (such as NPM).
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SearchException()
      Creates a new SearchException.
      SearchException​(java.lang.String msg)
      Creates a new SearchException.
      SearchException​(java.lang.String msg, java.lang.Throwable ex)
      Creates a new SearchException.
      SearchException​(java.lang.Throwable ex)
      Creates a new SearchException.
    • 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

      • SearchException

        public SearchException()
        Creates a new SearchException.
      • SearchException

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

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

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