dnet-core/dnet-core-components/src/main/java/eu/dnetlib/data/collector/rmi/CollectorServiceRuntimeExce...

23 lines
501 B
Java

package eu.dnetlib.data.collector.rmi;
public class CollectorServiceRuntimeException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 6317717870955037359L;
public CollectorServiceRuntimeException(final String string) {
super(string);
}
public CollectorServiceRuntimeException(final String string, final Throwable exception) {
super(string, exception);
}
public CollectorServiceRuntimeException(final Throwable exception) {
super(exception);
}
}