Class InvalidMethodSignatureException

All Implemented Interfaces:
Serializable

Thrown when the BCEL attempts to read a class file and determines that a class is malformed or otherwise cannot be interpreted as a class file.
Since:
6.8.0
See Also:
  • Constructor Details

    • InvalidMethodSignatureException

      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

      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.