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

org.intermine.objectstore.ObjectStoreException Maven / Gradle / Ivy

package org.intermine.objectstore;

/*
 * Copyright (C) 2002-2022 FlyMine
 *
 * This code may be freely distributed and modified under the
 * terms of the GNU Lesser General Public Licence.  This should
 * be distributed with the code.  See the LICENSE file for more
 * information or http://www.gnu.org/copyleft/lesser.html.
 *
 */

/**
 * An Exception that may be thrown by an ObjectStore indicating a fatal error.
 *
 * @author Andrew Varley
 */
public class ObjectStoreException extends Exception
{
    /**
     * Constructs an ObjectStoreException
     */
    public ObjectStoreException() {
        super();
    }

    /**
     * Constructs an ObjectStoreException with the specified detail message.
     *
     * @param msg the detail message
     */
    public ObjectStoreException(String msg) {
        super(msg);
    }

    /**
     * Constructs an ObjectStoreException with the specified nested throwable.
     *
     * @param t the nested throwable
     */
    public ObjectStoreException(Throwable t) {
        super(t);
    }

    /**
     * Constructs an ObjectStoreException with the specified detail message and nested throwable.
     *
     * @param msg the detail message
     * @param t the nested throwable
     */
    public ObjectStoreException(String msg, Throwable t) {
        super(msg, t);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy