gFeed/oai-harvester/src/main/java/org/gcube/data/publishing/gFeed/collectors/oai/model/CommunicationException.java

31 lines
799 B
Java

package org.gcube.data.publishing.gFeed.collectors.oai.model;
public class CommunicationException extends Exception {
public CommunicationException() {
// TODO Auto-generated constructor stub
}
public CommunicationException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public CommunicationException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public CommunicationException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public CommunicationException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
}