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

18 lines
335 B
Java
Raw Normal View History

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