Package org.jboss.cache.loader.s3

Examples of org.jboss.cache.loader.s3.S3Exception


  private void handleServiceException(S3ServiceException e) throws IOException {
    if (e.getCause() instanceof IOException) {
      throw (IOException) e.getCause();
    }
    else {
      throw new S3Exception(e);
    }
  }
View Full Code Here

TOP

Related Classes of org.jboss.cache.loader.s3.S3Exception

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.