Class MethodNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class MethodNotFoundException
    extends ELException
    Thrown when a method could not be found while evaluating a MethodExpression.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      MethodNotFoundException()
      Creates a MethodNotFoundException with no detail message.
      MethodNotFoundException​(java.lang.String message)
      Creates a MethodNotFoundException with the provided detail message.
      MethodNotFoundException​(java.lang.String message, java.lang.Throwable cause)
      Creates a MethodNotFoundException with the given detail message and root cause.
      MethodNotFoundException​(java.lang.Throwable cause)
      Creates a MethodNotFoundException with the given root cause.
    • 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 a MethodNotFoundException with no detail message.
      • MethodNotFoundException

        public MethodNotFoundException​(java.lang.String message)
        Creates a MethodNotFoundException with the provided detail message.
        Parameters:
        message - the detail message
      • MethodNotFoundException

        public MethodNotFoundException​(java.lang.Throwable cause)
        Creates a MethodNotFoundException with the given root cause.
        Parameters:
        cause - the originating cause of this exception
      • MethodNotFoundException

        public MethodNotFoundException​(java.lang.String message,
                                       java.lang.Throwable cause)
        Creates a MethodNotFoundException with the given detail message and root cause.
        Parameters:
        message - the detail message
        cause - the originating cause of this exception