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

org.ebay.datameta.dom.VerificationException Maven / Gradle / Ivy

Go to download

Classes needed for DataMeta DOM functionality in JVM; with Java, Scala, Clojure, JRuby and other platforms running on a JVM.

The newest version!
package org.ebay.datameta.dom;

/**
 * @author Michael Bergens
 */
public class VerificationException extends RuntimeException {
    public VerificationException(String message) {
        super(message);
    }

    public VerificationException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy