Class InvalidMethodSignatureException

    • Constructor Summary

      Constructors 
      Constructor Description
      InvalidMethodSignatureException​(java.lang.String signature)
      Constructs a new instance with the specified invalid signature as the message.
      InvalidMethodSignatureException​(java.lang.String signature, java.lang.Throwable cause)
      Constructs a new instance with the specified invalid signature as the message and a 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

      • InvalidMethodSignatureException

        public InvalidMethodSignatureException​(java.lang.String signature)
        Constructs a new instance with the specified invalid signature as the message.
        Parameters:
        signature - The invalid signature is saved for later retrieval by the Throwable.getMessage() method.
      • InvalidMethodSignatureException

        public InvalidMethodSignatureException​(java.lang.String signature,
                                               java.lang.Throwable cause)
        Constructs a new instance with the specified invalid signature as the message and a cause.
        Parameters:
        signature - The invalid signature is saved for later retrieval by the Throwable.getMessage() method.
        cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted, and indicates that the cause is nonexistent or unknown.