Package jakarta.enterprise.inject
Class UnproxyableResolutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.enterprise.inject.InjectionException
jakarta.enterprise.inject.ResolutionException
jakarta.enterprise.inject.UnproxyableResolutionException
- All Implemented Interfaces:
Serializable
Indicates that a contextual reference for a bean with a normal scope and a certain bean type cannot be obtained because the bean type cannot be proxied by the container.
- Author:
- Pete Muir, Gavin King
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates the exception with no detail message or cause.UnproxyableResolutionException
(String message) Creates the exception with given detail message.UnproxyableResolutionException
(String message, Throwable cause) Creates the exception with given detail message and 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
-
UnproxyableResolutionException
public UnproxyableResolutionException()Creates the exception with no detail message or cause. -
UnproxyableResolutionException
Creates the exception with given detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
UnproxyableResolutionException
Creates the exception with given detail message.- Parameters:
message
- the detail message
-
UnproxyableResolutionException
Creates the exception with given cause.- Parameters:
cause
- the cause
-