data-transfer-library/src/main/java/org/gcube/data/transfer/library/faults/ServiceNotFoundException.java

36 lines
896 B
Java

package org.gcube.data.transfer.library.faults;
public class ServiceNotFoundException extends InitializationException {
/**
*
*/
private static final long serialVersionUID = -3494011839783891174L;
public ServiceNotFoundException() {
// TODO Auto-generated constructor stub
}
public ServiceNotFoundException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public ServiceNotFoundException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public ServiceNotFoundException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public ServiceNotFoundException(String message, Throwable cause,
boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}