com.sun.star.comp.helper
Class BootstrapException
public class BootstrapException
BootstrapException is a checked exception that wraps an exception
thrown by the original target.
BootstrapException() - Constructs a
BootstrapException with null as
the target exception.
|
BootstrapException(Exception target) - Constructs a
BootstrapException with a target exception.
|
BootstrapException(String message) - Constructs a
BootstrapException with the specified
detail message.
|
BootstrapException(String message, Exception target) - Constructs a
BootstrapException with the specified
detail message and a target exception.
|
BootstrapException
public BootstrapException()
Constructs a BootstrapException
with null
as
the target exception.
BootstrapException
public BootstrapException(Exception target)
Constructs a BootstrapException
with a target exception.
target
- the target exception
BootstrapException
public BootstrapException(String message)
Constructs a BootstrapException
with the specified
detail message.
message
- the detail message
BootstrapException
public BootstrapException(String message,
Exception target)
Constructs a BootstrapException
with the specified
detail message and a target exception.
message
- the detail messagetarget
- the target exception
getTargetException
public Exception getTargetException()
Get the thrown target exception.