W3cubDocs

/OpenJDK 25

Class ConstantPoolException

All Implemented Interfaces:
Serializable
public class ConstantPoolException extends IllegalArgumentException
Thrown to indicate that requested entry cannot be obtained from the constant pool or the bootstrap method table. This is also thrown when the lazy evaluation of constant pool or bootstrap method table entries encounter format errors.
Since:
24
See Also:

Constructor Summary

Constructor Description
ConstantPoolException()
Constructs a ConstantPoolException with no detail message.
ConstantPoolException(String message)
Constructs a ConstantPoolException with the specified detail message.
ConstantPoolException(String message, Throwable cause)
Constructs a ConstantPoolException with the specified detail message and cause.
ConstantPoolException(Throwable cause)
Constructs a ConstantPoolException with the specified cause and a detail message of cause == null ? null : cause.toString().

Method Summary

Methods declared in class Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Details

ConstantPoolException

public ConstantPoolException()
Constructs a ConstantPoolException with no detail message.

ConstantPoolException

public ConstantPoolException(String message)
Constructs a ConstantPoolException with the specified detail message.
Parameters:
message - the detail message, may be null for no detail message

ConstantPoolException

public ConstantPoolException(Throwable cause)
Constructs a ConstantPoolException with the specified cause and a detail message of cause == null ? null : cause.toString().
Parameters:
cause - the cause, may be null for nonexistent or unknown cause

ConstantPoolException

public ConstantPoolException(String message, Throwable cause)
Constructs a ConstantPoolException with the specified detail message and cause.
Parameters:
message - the detail message, may be null for no detail message
cause - the cause, may be null for nonexistent or unknown cause

© 1993, 2025, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/classfile/constantpool/ConstantPoolException.html