no.difi.sdp.client2.domain.exceptions.XmlValideringException 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;
import org.xml.sax.SAXParseException;
import static java.util.Arrays.asList;
public class XmlValideringException extends SendException {
public XmlValideringException(String message, SAXParseException[] errors, AntattSkyldig antattSkyldig) {
super(message + "\n" + asList(errors).toString(), antattSkyldig, errors[0]);
}
public XmlValideringException(String message, AntattSkyldig antattSkyldig, Exception e) {
super(message, antattSkyldig, e);
}
}