Constructors Summary |
---|
public ServerLifecycleException()Construct a new LifecycleException with no other information.
super();
|
public ServerLifecycleException(String message)Construct a new LifecycleException for the specified message.
super(message);
|
public ServerLifecycleException(Throwable rootCause)Construct a new LifecycleException for the specified throwable.
super(rootCause);
|
public ServerLifecycleException(String message, Throwable rootCause)Construct a new LifecycleException for the specified message
and throwable.
super(message, rootCause);
|