Class DependencyNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class DependencyNotFoundException
    extends java.lang.Exception
    An exception used when a dependency could not be found.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • 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

      • DependencyNotFoundException

        public DependencyNotFoundException()
        Creates a new DependencyNotFoundException.
      • DependencyNotFoundException

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

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

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