You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by na...@apache.org on 2018/07/11 16:43:16 UTC

[2/2] jclouds git commit: Adds ConcurrentModificationException to the list of propagatable types

Adds ConcurrentModificationException to the list of propagatable types


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/4958f1f2
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/4958f1f2
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/4958f1f2

Branch: refs/heads/master
Commit: 4958f1f29a8e692319ed89d774009c602fcfc44a
Parents: 3839432
Author: Ignasi Barrera <na...@apache.org>
Authored: Tue Jul 10 09:40:26 2018 -0700
Committer: Ignasi Barrera <na...@apache.org>
Committed: Wed Jul 11 09:43:04 2018 -0700

----------------------------------------------------------------------
 core/src/main/java/org/jclouds/util/Throwables2.java | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/4958f1f2/core/src/main/java/org/jclouds/util/Throwables2.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/jclouds/util/Throwables2.java b/core/src/main/java/org/jclouds/util/Throwables2.java
index 1f74cbf..f9e4fe1 100644
--- a/core/src/main/java/org/jclouds/util/Throwables2.java
+++ b/core/src/main/java/org/jclouds/util/Throwables2.java
@@ -21,6 +21,7 @@ import static com.google.common.base.Throwables.getCausalChain;
 import static com.google.common.base.Throwables.propagate;
 import static com.google.common.collect.Iterables.find;
 
+import java.util.ConcurrentModificationException;
 import java.util.NoSuchElementException;
 
 import org.jclouds.concurrent.TransformParallelException;
@@ -135,6 +136,7 @@ public class Throwables2 {
          ResourceNotFoundException.class,
          InsufficientResourcesException.class,
          RateLimitExceededException.class,
+         ConcurrentModificationException.class,
          HttpResponseException.class);
 
    // Note this needs to be kept up-to-date with all top-level exceptions jclouds works against