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 newInjectionProviderExceptionwith a descriptive message and the root cause of the error.InjectionProviderException(Throwable cause)Creates a newInjectionProviderExceptionwith 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 newInjectionProviderExceptionwith the root cause of the error.- Parameters:
cause- the root cause
-
InjectionProviderException
Creates a newInjectionProviderExceptionwith a descriptive message and the root cause of the error.- Parameters:
message- descriptive messagecause- the root cause
-