Package org.openrdf.sail

Examples of org.openrdf.sail.SailReadOnlyException


        throw new SailReadOnlyException("snapshot sails are read-only");
    }

    @Override
    public void removeNamespace(String prefix) throws SailException {
        throw new SailReadOnlyException("snapshot sails are read-only");
    }
View Full Code Here


        throw new SailReadOnlyException("snapshot sails are read-only");
    }

    @Override
    public void clearNamespaces() throws SailException {
        throw new SailReadOnlyException("snapshot sails are read-only");
    }
View Full Code Here

     *                                        transaction is active.
     * @throws IllegalStateException          If the connection has been closed.
     */
    @Override
    public void addStatement(UpdateContext op, Resource subj, URI pred, Value obj, Resource... contexts) throws SailException {
        throw new SailReadOnlyException("snapshot sails are read-only");
    }
View Full Code Here

     *                                        another thread.
     * @since 2.7.0
     */
    @Override
    public void prepare() throws SailException {
        throw new SailReadOnlyException("snapshot sails are read-only");
    }
View Full Code Here

     *
     * @throws org.openrdf.sail.SailException
     */
    @Override
    public void startUpdate(UpdateContext op) throws SailException {
        throw new SailReadOnlyException("snapshot sails are read-only");
    }
View Full Code Here

     *                                        transaction is active.
     * @throws IllegalStateException          If the connection has been closed.
     */
    @Override
    public void removeStatement(UpdateContext op, Resource subj, URI pred, Value obj, Resource... contexts) throws SailException {
        throw new SailReadOnlyException("snapshot sails are read-only");
    }
View Full Code Here

     * @param op
     * @throws org.openrdf.sail.SailException
     */
    @Override
    public void endUpdate(UpdateContext op) throws SailException {
        throw new SailReadOnlyException("snapshot sails are read-only");
    }
View Full Code Here

TOP

Related Classes of org.openrdf.sail.SailReadOnlyException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.