You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
accounting-dashboard/src/main/java/org/gcube/portlets/user/accountingdashboard/shared/exception/ServiceException.java

45 lines
636 B
Java

package org.gcube.portlets.user.accountingdashboard.shared.exception;
/**
*
*/
/**
*
* @author Giancarlo Panichi
*
*
*/
public class ServiceException extends Exception {
private static final long serialVersionUID = -2255657546267656458L;
/**
*
*/
public ServiceException() {
super();
}
/**
* @param message
* message
*/
public ServiceException(String message) {
super(message);
}
/**
*
* @param message
* message
* @param throwable
* throwable
*
*/
public ServiceException(String message, Throwable throwable) {
super(message, throwable);
}
}