no.difi.sdp.client2.domain.exceptions.KonfigurasjonException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sikker-digital-post-klient-java Show documentation
Show all versions of sikker-digital-post-klient-java Show documentation
Klient for sending av sikker digital post fra offentlige virksomheter.
package no.difi.sdp.client2.domain.exceptions;
public class KonfigurasjonException extends SikkerDigitalPostException {
public KonfigurasjonException(String message, Exception e) {
super(message, e);
}
public KonfigurasjonException(String message) {
this(message, null);
}
public KonfigurasjonException(Exception e) {
this(null, e);
}
}