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 SummaryConstructorsConstructorDescriptionConstructs aConstantPoolExceptionwith no detail message.ConstantPoolException(String message) Constructs aConstantPoolExceptionwith the specified detail message.ConstantPoolException(String message, Throwable cause) Constructs aConstantPoolExceptionwith the specified detail message and cause.ConstantPoolException(Throwable cause) Constructs aConstantPoolExceptionwith the specified cause and a detail message ofcause == null ? null : cause.toString().
- 
Method SummaryMethods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ConstantPoolExceptionpublic ConstantPoolException()Constructs aConstantPoolExceptionwith no detail message.
- 
ConstantPoolExceptionConstructs aConstantPoolExceptionwith the specified detail message.- Parameters:
- message- the detail message, may be- nullfor no detail message
 
- 
ConstantPoolExceptionConstructs aConstantPoolExceptionwith the specified cause and a detail message ofcause == null ? null : cause.toString().- Parameters:
- cause- the cause, may be- nullfor nonexistent or unknown cause
 
- 
ConstantPoolException
 
-