Package jakarta.enterprise.inject
Class ResolutionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- jakarta.enterprise.inject.InjectionException
-
- jakarta.enterprise.inject.ResolutionException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
AmbiguousResolutionException
,UnproxyableResolutionException
,UnsatisfiedResolutionException
public class ResolutionException extends InjectionException
Indicates a problem relating to typesafe resolution.- Author:
- Gavin King
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ResolutionException()
Creates the exception with no detail message or cause.ResolutionException(java.lang.String message)
Creates the exception with given detail message.ResolutionException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with given detail message and cause.ResolutionException(java.lang.Throwable cause)
Creates the exception with given cause.
-
-
-
Constructor Detail
-
ResolutionException
public ResolutionException()
Creates the exception with no detail message or cause.
-
ResolutionException
public ResolutionException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with given detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
ResolutionException
public ResolutionException(java.lang.String message)
Creates the exception with given detail message.- Parameters:
message
- the detail message
-
ResolutionException
public ResolutionException(java.lang.Throwable cause)
Creates the exception with given cause.- Parameters:
cause
- the cause
-
-