dnet-applications/libs/dnet-exporter-model/src/main/java/eu/dnetlib/openaire/exporter/exceptions/CommunityNotFoundException....

19 lines
342 B
Java
Raw Normal View History

package eu.dnetlib.openaire.exporter.exceptions;
2022-02-04 10:12:15 +01:00
public class CommunityNotFoundException extends Exception {
2022-02-07 10:09:18 +01:00
/**
*
*/
private static final long serialVersionUID = -5605421323034135778L;
2022-02-04 10:12:15 +01:00
public CommunityNotFoundException(final String msg) {
super(msg);
}
public CommunityNotFoundException(final Exception e) {
super(e);
}
}