[jboss-cvs] JBossAS SVN: r58170 - branches/JBoss_4_0_3_SP1_JBAS_3511/server/src/main/org/jboss/jms/asf

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Nov 6 19:12:00 EST 2006


Author: weston.price at jboss.com
Date: 2006-11-06 19:11:59 -0500 (Mon, 06 Nov 2006)
New Revision: 58170

Added:
   branches/JBoss_4_0_3_SP1_JBAS_3511/server/src/main/org/jboss/jms/asf/AllFatalJMSExceptionSorter.java
Log:
[JBAS-3511] Excpetion sorter implementation as well as more stats to
collect information on underlying SessionPool.

Added: branches/JBoss_4_0_3_SP1_JBAS_3511/server/src/main/org/jboss/jms/asf/AllFatalJMSExceptionSorter.java
===================================================================
--- branches/JBoss_4_0_3_SP1_JBAS_3511/server/src/main/org/jboss/jms/asf/AllFatalJMSExceptionSorter.java	2006-11-06 23:19:08 UTC (rev 58169)
+++ branches/JBoss_4_0_3_SP1_JBAS_3511/server/src/main/org/jboss/jms/asf/AllFatalJMSExceptionSorter.java	2006-11-07 00:11:59 UTC (rev 58170)
@@ -0,0 +1,26 @@
+/*
+ * JBoss, the OpenSource J2EE webOS
+ *
+ * Distributable under LGPL license.
+ * See terms of license at gnu.org.
+ */
+package org.jboss.jms.asf;
+
+import javax.jms.JMSException;
+
+
+/**
+ * A AllFatalJMSExceptionSorter.
+ * 
+ * @author <a href="mailto:weston.price at jboss.org>Weston Price</a>
+ * @version $Revision: 1.1 $
+ */
+public class AllFatalJMSExceptionSorter implements JMSExceptionSorter
+{
+
+   public boolean isJMSExceptionFatal(JMSException e)
+   {
+      return true;
+   }
+
+}




More information about the jboss-cvs-commits mailing list