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

org.fcrepo.client.utility.validate.ObjectSourceException Maven / Gradle / Ivy

There is a newer version: 3.8.1
Show newest version
/* The contents of this file are subject to the license and copyright terms
 * detailed in the license directory at the root of the source tree (also 
 * available online at http://fedora-commons.org/license/).
 */

package org.fcrepo.client.utility.validate;

/**
 * Indicates a problem fetching objects from the {@link ObjectSource}.
 * 
 * @author Jim Blake
 */
public class ObjectSourceException
        extends Exception {

    /** It's serializable, so give it a version ID. */
    private static final long serialVersionUID = 1L;

    public ObjectSourceException() {
        super();
    }

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy