Author: shane.bryzak(a)jboss.com
Date: 2010-05-26 09:30:13 -0400 (Wed, 26 May 2010)
New Revision: 12810
Modified:
modules/security/trunk/impl/src/main/java/org/jboss/seam/security/util/AnnotatedBeanProperty.java
Log:
more fixes...
Modified:
modules/security/trunk/impl/src/main/java/org/jboss/seam/security/util/AnnotatedBeanProperty.java
===================================================================
---
modules/security/trunk/impl/src/main/java/org/jboss/seam/security/util/AnnotatedBeanProperty.java 2010-05-26
13:26:51 UTC (rev 12809)
+++
modules/security/trunk/impl/src/main/java/org/jboss/seam/security/util/AnnotatedBeanProperty.java 2010-05-26
13:30:13 UTC (rev 12810)
@@ -292,6 +292,14 @@
{
throw new RuntimeException(message.toString(), ex);
}
+ else if (ex instanceof RuntimeException)
+ {
+ throw (RuntimeException) ex;
+ }
+ else
+ {
+ throw new RuntimeException(ex);
+ }
}
}
Show replies by date