Class ComponentDefinitionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.osgi.service.blueprint.container.ComponentDefinitionException
- All Implemented Interfaces:
Serializable
A Blueprint exception indicating that a component definition is in error.
This exception is thrown when a configuration-related error occurs during
creation of a Blueprint Container.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a Component Definition Exception with no message or exception cause.ComponentDefinitionException
(String explanation) Creates a Component Definition Exception with the specified messageComponentDefinitionException
(String explanation, Throwable cause) Creates a Component Definition Exception with the specified message and exception cause.Creates a Component Definition Exception with the exception cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
ComponentDefinitionException
public ComponentDefinitionException()Creates a Component Definition Exception with no message or exception cause. -
ComponentDefinitionException
Creates a Component Definition Exception with the specified message- Parameters:
explanation
- The associated message.
-
ComponentDefinitionException
Creates a Component Definition Exception with the specified message and exception cause.- Parameters:
explanation
- The associated message.cause
- The cause of this exception.
-
ComponentDefinitionException
Creates a Component Definition Exception with the exception cause.- Parameters:
cause
- The cause of this exception.
-