Package org.osgi.service.subsystem
Class SubsystemException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.osgi.service.subsystem.SubsystemException
- All Implemented Interfaces:
Serializable
A Subsystem exception used to indicate a problem.
- Author:
- $Id: ad56ae269d24c698380e80d2f91c76d61ee121ff $
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a Subsystem exception with no message.SubsystemException
(String message) Construct a Subsystem exception specifying a message.SubsystemException
(String message, Throwable cause) Construct a Subsystem exception specifying a message and a cause.SubsystemException
(Throwable cause) Construct a Subsystem exception specifying a 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
-
SubsystemException
public SubsystemException()Construct a Subsystem exception with no message. -
SubsystemException
Construct a Subsystem exception specifying a message.- Parameters:
message
- The message to include in the exception.
-
SubsystemException
Construct a Subsystem exception specifying a cause.- Parameters:
cause
- The cause of the exception.
-
SubsystemException
Construct a Subsystem exception specifying a message and a cause.- Parameters:
message
- The message to include in the exception.cause
- The cause of the exception.
-