Explanation
javax.enterprise.context.Conversation#begin() was executed in a state where the Conversation scope had already started.
System Action
Processing is interrupted.
User Action
Review the Java application processing so that javax.enterprise.context.Conversation#begin() is not executed after the Conversation scope is started.
Explanation
javax.enterprise.context.Conversation#end() was executed in a state where the Conversation scope had not yet started.
System Action
Processing is interrupted.
User Action
Review the Java application processing so that javax.enterprise.context.Conversation#end() is not executed in a state where the Conversation scope has not yet started.
Variable Information
{0}: Conversation scope ID number
Explanation
The Conversation scope of ID {0} was not found.
System Action
Processing is interrupted.
User Action
The Conversation scope of ID {0} may have ended because of a timeout.
Check if a timeout has occurred.
Variable Information
{0}: Observer method
Explanation
The Observer method has been declared for the Dependent scope class.
System Action
Processing is interrupted.
User Action
Change the scope of the class for which the Observer method has been declared to a scope other than Dependent.
Variable Information
{0}: Interface implemented by the injected class
Explanation
A class has not been specified for the @New annotation argument.
System Action
Processing is interrupted.
User Action
Specify the class to be injected in the argument.
Explanation
This message shows the version of the CDI.
Variable Information
{0}: Injected class candidate
Explanation
There are multiple classes that can be injected.
System Action
Processing is interrupted.
User Action
Check the CDI-related definition so that the class to be injected can be identified.
Variable Information
{0}: Injected class or interface
{1}: Injected class qualifier
{2}: Injection destination
Explanation
Either the CDI-related definition for the injected class is insufficient, or the CDI is not valid.
System Action
Processing is interrupted.
User Action
Check the CDI-related definition for the injected class. Alternatively, check if beans.xml has been stored in the Java application.
Variable Information
{0}: Injected class or interface
{1}: Injected class qualifier
{2}: Injection destination
{3}: Injected class candidate
Explanation
There are multiple classes that can be injected.
System Action
Processing is interrupted.
User Action
Check the CDI-related definition so that the class to be injected can be identified.
Variable Information
{0}: Class defined as the Interceptor in beans.xml
Explanation
The @Interceptor annotation has not been granted to the class specified as the Interceptor in beans.xml.
System Action
Processing is interrupted.
User Action
To use an Interceptor, grant the @Interceptor annotation.
If the Interceptor is not to be used, delete the content specified for the Interceptor from beans.xml.
Variable Information
{0}: Class defined as the Alternative in beans.xml
Explanation
The @Alternative annotation has not been granted to the class in which the Alternative is enabled.
System Action
Processing is interrupted.
User Action
Grant the @Alternative annotation.
Variable Information
{0}: disposer method
Explanation
The configuration of the disposer method is incorrect.
System Action
Processing is interrupted.
User Action
Check the definitions of the producer and disposer methods.
Variable Information
{0}: Method specified for the Interceptor
Explanation
Throwing exceptions has not been declared in the Interceptor.
System Action
Processing is continued.
User Action
Declare the throwing of exceptions in the Interceptor.