Package com.cloudloop.storage.exceptions

Examples of com.cloudloop.storage.exceptions.StreamToStoreNotSetException


     *
     */
    public void write( TransferProgressObserver progressObserver )
    {
    if ( getStreamToStore( ) == null )
        throw new StreamToStoreNotSetException(
          "You must provide an input stream in order to write a file to the cloud." );
   
    getParentStore( ).upload( this, progressObserver );
    }
View Full Code Here

TOP

Related Classes of com.cloudloop.storage.exceptions.StreamToStoreNotSetException

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.