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

au.csiro.ontology.snomed.refset.rf2.ValidationException Maven / Gradle / Ivy

The newest version!
package au.csiro.ontology.snomed.refset.rf2;

import java.util.Collection;

public class ValidationException extends Exception {

    private static final long serialVersionUID = 1L;

    public ValidationException(String message, Collection problems) {
        super(makeMessage(message, problems));
    }

    private static String makeMessage(String message, Collection problems) {
        if (null != problems) {
            for (String p: problems) {
                message = message + "\n\t" + p;
            }
        }
        return message;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy