org.obolibrary.oboformat.model.DocumentStructureException Maven / Gradle / Ivy
package org.obolibrary.oboformat.model;
/**
* The Class DocumentStructureException.
*/
public class DocumentStructureException extends RuntimeException {
/**
* Instantiates a new document structure exception.
*
* @param msg the msg
*/
public DocumentStructureException(String msg) {
super(msg);
}
}