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

org.rcsb.cif.SchemaMismatchException Maven / Gradle / Ivy

package org.rcsb.cif;

/**
 * Indicates potential schema validations by using incorrect schemata.
 */
public class SchemaMismatchException extends RuntimeException {
    public SchemaMismatchException(String message) {
        super(message);
    }

    public SchemaMismatchException(String message, Exception e) {
        super(message, e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy