gedcom-api/src/main/java/de/nth/chronicle/gedcom/exception/GedcomException.java

17 lines
394 B
Java

package de.nth.chronicle.gedcom.exception;
public class GedcomException extends RuntimeException {
public GedcomException() { super(); }
public GedcomException(String message) {
super(message);
}
public GedcomException(Throwable cause) {
super(cause);
}
public GedcomException(String message, Throwable cause) {
super(message, cause);
}
}