java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.enterprise.inject.InjectionException
jakarta.enterprise.inject.IllegalProductException
- All Implemented Interfaces:
- Serializable
 Indicates that a producer method returned a null value or a producer field contained a null value, and the scope of the
 producer method or field was not Dependent.
 
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreates the exception with no detail message or cause.IllegalProductException(String message) Creates the exception with given detail message.IllegalProductException(String message, Throwable cause) Creates the exception with given detail message and cause.IllegalProductException(Throwable cause) Creates the exception with given cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
IllegalProductExceptionpublic IllegalProductException()Creates the exception with no detail message or cause.
- 
IllegalProductException
- 
IllegalProductExceptionCreates the exception with given detail message.- Parameters:
- message- the detail message
 
- 
IllegalProductExceptionCreates the exception with given cause.- Parameters:
- cause- the cause
 
 
-