org.obolibrary.oboformat.model.FrameMergeException Maven / Gradle / Ivy
The newest version!
package org.obolibrary.oboformat.model;
/**
* The Class FrameMergeException.
*/
public class FrameMergeException extends Exception {
/**
* Instantiates a new frame merge exception.
*
* @param msg the message
*/
public FrameMergeException(String msg) {
super(msg);
}
}