| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Seam
Revision: 8911
Author: pete.muir@jboss.org
Date: 04 Sep 2008 11:57:45
Changes:And commit the changes needed for moving rootCause :(
Files:| ... | ...@@ -12,7 +12,7 @@ | |
| 12 | 12 | import org.jboss.seam.annotations.Scope; |
| 13 | 13 | import org.jboss.seam.core.ConversationEntries; |
| 14 | 14 | import org.jboss.seam.core.ConversationEntry; |
| 15 | import org.jboss.seam.util.EJB; | |
| 15 | import org.jboss.seam.util.Exceptions; | |
| 16 | 16 | |
| 17 | 17 | @Name("org.jboss.seam.debug.contexts") |
| 18 | 18 | @Scope(ScopeType.APPLICATION) |
| ... | ...@@ -67,7 +67,7 @@ | |
| 67 | 67 | public List<Exception> getExceptionCauses() |
| 68 | 68 | { |
| 69 | 69 | List<Exception> causes = new ArrayList<Exception>(); |
| 70 | for (Exception cause=getException(); cause!=null; cause=EJB.getCause(cause)) | |
| 70 | for (Exception cause=getException(); cause!=null; cause=Exceptions.getCause(cause)) | |
| 71 | 71 | { |
| 72 | 72 | causes.add(cause); |
| 73 | 73 | } |