package com.robonobo.core.service; import com.robonobo.core.api.RobonoboException; public class ServiceException extends RobonoboException { public ServiceException() { super(); // TODO Auto-generated constructor stub } public ServiceException(String message) { super(message); // TODO Auto-generated constructor stub } public ServiceException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public ServiceException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }