All Downloads are FREE. Search and download functionalities are using the official Maven repository.

no.difi.sdp.client2.domain.exceptions.XmlValideringException Maven / Gradle / Ivy

There is a newer version: 7.0.0-RC2
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy