All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.stanford.protege.webprotege.crud.CannotGenerateFreshEntityIdException Maven / Gradle / Ivy

There is a newer version: 2.0.2-WHO
Show newest version
package edu.stanford.protege.webprotege.crud;

/**
 * @author Matthew Horridge, Stanford University, Bio-Medical Informatics Research Group, Date: 10/09/2014
 */
public class CannotGenerateFreshEntityIdException extends RuntimeException {

    public CannotGenerateFreshEntityIdException() {
    }

    public CannotGenerateFreshEntityIdException(String message) {
        super(message);
    }

    public CannotGenerateFreshEntityIdException(String message, Throwable cause) {
        super(message, cause);
    }

    public CannotGenerateFreshEntityIdException(Throwable cause) {
        super(cause);
    }

    public CannotGenerateFreshEntityIdException(
            String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy