pl.poznan.put.pdb.PdbParsingException Maven / Gradle / Ivy
package pl.poznan.put.pdb;
/** When data in PDB files is inconsistent with the documented format. */
public class PdbParsingException extends RuntimeException {
public PdbParsingException(final String message, final Throwable cause) {
super(message, cause);
}
public PdbParsingException(final String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy