![JAR search and dependency download from the Maven repository](/logo.png)
org.obolibrary.oboformat.model.FrameStructureException Maven / Gradle / Ivy
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);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy