Class ConstantPoolException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
java.lang.classfile.constantpool.ConstantPoolException
- All Implemented Interfaces:
Serializable
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
ConstructorDescriptionConstructs aConstantPoolException
with no detail message.ConstantPoolException
(String message) Constructs aConstantPoolException
with the specified detail message.ConstantPoolException
(String message, Throwable cause) Constructs aConstantPoolException
with the specified detail message and cause.ConstantPoolException
(Throwable cause) Constructs aConstantPoolException
with the specified cause and a detail message ofcause == null ? null : cause.toString()
. -
Method Summary
Methods declared in class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConstantPoolException
public ConstantPoolException()Constructs aConstantPoolException
with no detail message. -
ConstantPoolException
Constructs aConstantPoolException
with the specified detail message.- Parameters:
message
- the detail message, may benull
for no detail message
-
ConstantPoolException
Constructs aConstantPoolException
with the specified cause and a detail message ofcause == null ? null : cause.toString()
.- Parameters:
cause
- the cause, may benull
for nonexistent or unknown cause
-
ConstantPoolException
-