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