| java.lang.Object java.lang.Throwable java.lang.Exception org.apache.beehive.controls.spi.svc.ServiceException
ServiceException | public class ServiceException extends Exception (Code) | | The ServiceException class declares an checked exception that is thrown by the Service API
runtime under certain failure conditions.
|
Constructor Summary | |
public | ServiceException(String message) Constructs a ServiceException object with the specified String as a message. | public | ServiceException(String message, Throwable t) Constructs a ServiceException object using the specified String as a message, and the
specified Throwable as a nested exception. |
ServiceException | public ServiceException(String message)(Code) | | Constructs a ServiceException object with the specified String as a message.
Parameters: message - The message to use. |
ServiceException | public ServiceException(String message, Throwable t)(Code) | | Constructs a ServiceException object using the specified String as a message, and the
specified Throwable as a nested exception.
Parameters: message - The message to use. Parameters: t - The exception to nest within this exception. |
|
|