Package org.apache.jackrabbit.api

Examples of org.apache.jackrabbit.api.ReferenceBinaryException


    //------------------------------------------------------------< Binary >--

    @Override
    public InputStream getStream() throws RepositoryException {
        throw new ReferenceBinaryException(
                "Broken binary reference: " + reference);
    }
View Full Code Here


    }

    @Override
    public int read(byte[] b, long position)
            throws IOException, RepositoryException {
        throw new ReferenceBinaryException(
                "Broken binary reference: " + reference);
    }
View Full Code Here

                "Broken binary reference: " + reference);
    }

    @Override
    public long getSize() throws RepositoryException {
        throw new ReferenceBinaryException(
                "Broken binary reference: " + reference);
    }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.api.ReferenceBinaryException

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.