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

org.modeshape.jcr.NoSuchRepositoryException Maven / Gradle / Ivy

There is a newer version: 5.4.1.Final
Show newest version
package org.modeshape.jcr;

import javax.jcr.RepositoryException;

/**
 * Exception thrown when an operation attempts to access a repository that does not exist.
 */
public class NoSuchRepositoryException extends RepositoryException {

    private static final long serialVersionUID = 1L;

    public NoSuchRepositoryException() {
        super();
    }

    public NoSuchRepositoryException( String message,
                                      Throwable rootCause ) {
        super(message, rootCause);
    }

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

    public NoSuchRepositoryException( Throwable rootCause ) {
        super(rootCause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy