BundleException
object is created by the Framework to denote an exception condition in the lifecycle of a bundle. BundleException
s should not be created by bundle developers.
This exception is updated to conform to the general purpose exception chaining mechanism.
Definition at line 37 of file BundleException.java.
Public Member Functions | |
BundleException (String msg, Throwable cause) | |
Creates a BundleException that wraps another exception. | |
BundleException (String msg) | |
Creates a BundleException object with the specified message. | |
Throwable | getNestedException () |
Returns any nested exceptions included in this exception. | |
Throwable | getCause () |
Returns the cause of this exception or null if no cause was specified when this exception was created. | |
Throwable | initCause (Throwable cause) |
The cause of this exception can only be set when constructed. |
org.osgi.framework.BundleException.BundleException | ( | String | msg, | |
Throwable | cause | |||
) |
Creates a BundleException
that wraps another exception.
msg | The associated message. | |
cause | The cause of this exception. |
Definition at line 50 of file BundleException.java.
org.osgi.framework.BundleException.BundleException | ( | String | msg | ) |
Creates a BundleException
object with the specified message.
msg | The message. |
Definition at line 61 of file BundleException.java.
Throwable org.osgi.framework.BundleException.getNestedException | ( | ) |
Returns any nested exceptions included in this exception.
This method predates the general purpose exception chaining mechanism. The getCause() method is now the preferred means of obtaining this information.
null
if there is no nested exception. Definition at line 77 of file BundleException.java.
Referenced by org.knopflerfish.framework.Main.restart(), and org.knopflerfish.framework.Main.shutdown().
Throwable org.osgi.framework.BundleException.getCause | ( | ) |
Returns the cause of this exception or null
if no cause was specified when this exception was created.
null
if no cause was specified. Definition at line 89 of file BundleException.java.
Throwable org.osgi.framework.BundleException.initCause | ( | Throwable | cause | ) |
The cause of this exception can only be set when constructed.
cause | Cause of the exception. |
java.lang.IllegalStateException | This method will always throw an IllegalStateException since the cause of this exception can only be set when constructed. |
Definition at line 103 of file BundleException.java.