java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.enterprise.inject.InjectionException
jakarta.enterprise.inject.ResolutionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AmbiguousResolutionException
,UnproxyableResolutionException
,UnsatisfiedResolutionException
Indicates a problem relating to typesafe resolution.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates the exception with no detail message or cause.ResolutionException
(String message) Creates the exception with given detail message.ResolutionException
(String message, Throwable cause) Creates the exception with given detail message and cause.ResolutionException
(Throwable cause) Creates the exception with given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ResolutionException
public ResolutionException()Creates the exception with no detail message or cause. -
ResolutionException
-
ResolutionException
Creates the exception with given detail message.- Parameters:
message
- the detail message
-
ResolutionException
Creates the exception with given cause.- Parameters:
cause
- the cause
-