org.coode.oppl.entity.OWLEntityCreationException Maven / Gradle / Ivy
package org.coode.oppl.entity;
import org.semanticweb.owlapi.model.OWLException;
/** Author: drummond
* http://www.cs.man.ac.uk/~drummond/
* The University Of Manchester
* Bio Health Informatics Group
* Date: Sep 18, 2008 */
public class OWLEntityCreationException extends OWLException {
private static final long serialVersionUID = 20100L;
/** @param s
* s */
public OWLEntityCreationException(String s) {
super(s);
}
/** @param s
* s
* @param throwable
* throwable */
public OWLEntityCreationException(String s, Throwable throwable) {
super(s, throwable);
}
/** @param throwable
* throwable */
public OWLEntityCreationException(Throwable throwable) {
super(throwable);
}
}