de.unirostock.sems.bives.sbml.exception.BivesSBMLParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BiVeS-SBML Show documentation
Show all versions of BiVeS-SBML Show documentation
BiVeS - BioModel Version Control System
This package provides SBML integration for BiVeS
/**
*
*/
package de.unirostock.sems.bives.sbml.exception;
import de.unirostock.sems.bives.exception.BivesException;
/**
* The Class BivesSBMLParseException.
*
* @author Martin Scharm
*/
public class BivesSBMLParseException
extends BivesException
{
private static final long serialVersionUID = -3683762989632487518L;
/**
* Instantiates a new BiVeS exception signalling an error while parsing an
* SBML document.
*
* @param msg
* the message
*/
public BivesSBMLParseException (String msg)
{
super (msg);
}
}