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.
- 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 of(cause==null ? null : cause.toString())
. -
Method Summary
Methods inherited from class java.lang.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.
-
ConstantPoolException
Constructs aConstantPoolException
with the specified cause and a detail message of(cause==null ? null : cause.toString())
.- Parameters:
cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-
ConstantPoolException
Constructs aConstantPoolException
with the specified detail message and cause.- Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-