org.obolibrary.oboformat.model.FrameStructureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of owlapi-oboformat Show documentation
Show all versions of owlapi-oboformat Show documentation
A java library for converting obo format documents to OWL, and for converting (a subset of) OWL to obo format. This version has been slightly modified to be included directly in the OWL API.
The upstream code for this module and its authors can be found at https://code.google.com/p/oboformat/.
The newest version!
package org.obolibrary.oboformat.model;
/**
* The Class FrameStructureException.
*/
public class FrameStructureException extends DocumentStructureException {
/**
* Instantiates a new frame structure exception.
*
* @param msg the message
*/
public FrameStructureException(String msg) {
super(msg);
}
/**
* Instantiates a new frame structure exception.
*
* @param frame the frame
* @param msg the message
*/
public FrameStructureException(Frame frame, String msg) {
super(msg + " in frame:" + frame);
}
}