Package com.sun.faces.spi
Class InjectionProviderException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.sun.faces.spi.InjectionProviderException
- All Implemented Interfaces:
Serializable
public class InjectionProviderException extends Exception
Wraps any exception thrown by an implementation of
InjectionProvider
.- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description InjectionProviderException(String message, Throwable cause)
Creates a newInjectionProviderException
with a descriptive message and the root cause of the error.InjectionProviderException(Throwable cause)
Creates a newInjectionProviderException
with the root cause of the error. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InjectionProviderException
Creates a newInjectionProviderException
with the root cause of the error.- Parameters:
cause
- the root cause
-
InjectionProviderException
Creates a newInjectionProviderException
with a descriptive message and the root cause of the error.- Parameters:
message
- descriptive messagecause
- the root cause
-