nl.vpro.nep.service.exception.NEPException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-nep Show documentation
Show all versions of media-nep Show documentation
Support for the several APIs of NEP that POMS is integrating with
package nl.vpro.nep.service.exception;
import lombok.Getter;
import java.io.Serial;
public class NEPException extends RuntimeException {
@Serial
private static final long serialVersionUID = -5638799312282876320L;
@Getter
private final Exception originalException;
public NEPException(Exception originalException, String errorMessage) {
super(errorMessage);
this.originalException = originalException;
}
public NEPException(String errorMessage) {
super(errorMessage);
this.originalException = null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy