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:
java.io.Serializable
public class UnproxyableResolutionException extends ResolutionException
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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnproxyableResolutionException()
Creates the exception with no detail message or cause.UnproxyableResolutionException(java.lang.String message)
Creates the exception with given detail message.UnproxyableResolutionException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with given detail message and cause.UnproxyableResolutionException(java.lang.Throwable cause)
Creates the exception with given cause.
-
-
-
Constructor Detail
-
UnproxyableResolutionException
public UnproxyableResolutionException()
Creates the exception with no detail message or cause.
-
UnproxyableResolutionException
public UnproxyableResolutionException(java.lang.String message, java.lang.Throwable cause)
Creates the exception with given detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
UnproxyableResolutionException
public UnproxyableResolutionException(java.lang.String message)
Creates the exception with given detail message.- Parameters:
message
- the detail message
-
UnproxyableResolutionException
public UnproxyableResolutionException(java.lang.Throwable cause)
Creates the exception with given cause.- Parameters:
cause
- the cause
-
-