Package jakarta.enterprise.inject
Class UnsatisfiedResolutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.enterprise.inject.InjectionException
-
- jakarta.enterprise.inject.ResolutionException
-
- jakarta.enterprise.inject.UnsatisfiedResolutionException
-
- All Implemented Interfaces:
java.io.Serializable
public class UnsatisfiedResolutionException extends ResolutionException
Indicates that no bean matches a certain combination of required type and required qualifiers and is eligible for injection into a certain class.
- Author:
- Pete Muir, Gavin King
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnsatisfiedResolutionException()
Creates the exception with no detail message or cause.UnsatisfiedResolutionException(java.lang.String message)
Creates the exception with given detail message.UnsatisfiedResolutionException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with given detail message and cause.UnsatisfiedResolutionException(java.lang.Throwable cause)
Creates the exception with given cause.
-
-
-
Constructor Detail
-
UnsatisfiedResolutionException
public UnsatisfiedResolutionException()
Creates the exception with no detail message or cause.
-
UnsatisfiedResolutionException
public UnsatisfiedResolutionException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with given detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
UnsatisfiedResolutionException
public UnsatisfiedResolutionException(java.lang.String message)
Creates the exception with given detail message.- Parameters:
message
- the detail message
-
UnsatisfiedResolutionException
public UnsatisfiedResolutionException(java.lang.Throwable cause)
Creates the exception with given cause.- Parameters:
cause
- the cause
-
-