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

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

package org.rcsb.cif;

/**
 * Indicates that Cif parsing failed.
 */
public class ParsingException extends RuntimeException {
    public ParsingException(String message) {
        super(message);
    }

    public ParsingException(String message, int line) {
        super(message + " [" + line + "]");
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy