species-products-discovery/src/main/java/org/gcube/data/spd/exception/ServiceException.java

31 lines
588 B
Java

package org.gcube.data.spd.exception;
public class ServiceException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public ServiceException() {
super();
// TODO Auto-generated constructor stub
}
public ServiceException(String message, Throwable cause) {
super(message, cause);
// 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
}
}