You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by fm...@apache.org on 2012/03/13 11:15:55 UTC

svn commit: r1300051 - /incubator/syncope/trunk/core/src/main/java/org/syncope/core/util/ConnObjectUtil.java

Author: fmartelli
Date: Tue Mar 13 10:15:55 2012
New Revision: 1300051

URL: http://svn.apache.org/viewvc?rev=1300051&view=rev
Log:
SYNCOPE-32 #comment let's catch connector exceptions also

Modified:
    incubator/syncope/trunk/core/src/main/java/org/syncope/core/util/ConnObjectUtil.java

Modified: incubator/syncope/trunk/core/src/main/java/org/syncope/core/util/ConnObjectUtil.java
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/syncope/core/util/ConnObjectUtil.java?rev=1300051&r1=1300050&r2=1300051&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/util/ConnObjectUtil.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/syncope/core/util/ConnObjectUtil.java Tue Mar 13 10:15:55 2012
@@ -379,7 +379,7 @@ public class ConnObjectUtil {
                         LOG.debug("Retrieved remotye object {}", connectorObject);
                     }
                 }
-            } catch (NotFoundException e) {
+            } catch (Exception e) {
                 LOG.error("Unable to retrieve virtual attribute values on '{}'", resource.getName(), e);
             }
         }