[portal-commits] JBoss Portal SVN: r5912 - trunk/identity/src/main/org/jboss/portal/identity

portal-commits at lists.jboss.org portal-commits at lists.jboss.org
Wed Dec 20 14:27:09 EST 2006


Author: bdaw
Date: 2006-12-20 14:27:01 -0500 (Wed, 20 Dec 2006)
New Revision: 5912

Modified:
   trunk/identity/src/main/org/jboss/portal/identity/DelegatingUserProfileModuleImpl.java
Log:
- more verbose exeption message

Modified: trunk/identity/src/main/org/jboss/portal/identity/DelegatingUserProfileModuleImpl.java
===================================================================
--- trunk/identity/src/main/org/jboss/portal/identity/DelegatingUserProfileModuleImpl.java	2006-12-20 19:25:16 UTC (rev 5911)
+++ trunk/identity/src/main/org/jboss/portal/identity/DelegatingUserProfileModuleImpl.java	2006-12-20 19:27:01 UTC (rev 5912)
@@ -105,7 +105,7 @@
       }
       catch (Exception e)
       {
-         throw new IdentityException("Cannot resolve property: ", e);
+         throw new IdentityException("Cannot resolve property: " + propertyName, e);
       }
    }
 
@@ -149,7 +149,7 @@
       }
       catch (Exception e)
       {
-         throw new IdentityException("Cannot resolve property: ", e);
+         throw new IdentityException("Cannot resolve property: " + name, e);
       }
    }
 
@@ -173,7 +173,7 @@
       }
       catch (Exception e)
       {
-         throw new IdentityException("Cannot resolve property: ", e);
+         throw new IdentityException("Cannot resolve properties: ", e);
       }
    }
 




More information about the portal-commits mailing list