Class MethodNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class MethodNotFoundException
    extends java.lang.Exception
    Checked exception to throw if a method has not been found. This is designed to be a counterpart for ClassNotFoundException, just covering methods instead of classes.
    Author:
    Rene Schneider - initial API and implementation
    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

      • MethodNotFoundException

        public MethodNotFoundException()
        Creates an instance.
      • MethodNotFoundException

        public MethodNotFoundException​(java.lang.String aMessage,
                                       java.lang.Throwable aCause)
        Creates an instance.
      • MethodNotFoundException

        public MethodNotFoundException​(java.lang.String aMessage)
        Creates an instance.
      • MethodNotFoundException

        public MethodNotFoundException​(java.lang.Throwable aCause)
        Creates an instance.