Return-Path: Delivered-To: apmail-geronimo-scm-archive@www.apache.org Received: (qmail 84373 invoked from network); 3 Jun 2004 14:34:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 3 Jun 2004 14:34:28 -0000 Received: (qmail 87379 invoked by uid 500); 3 Jun 2004 14:34:21 -0000 Delivered-To: apmail-geronimo-scm-archive@geronimo.apache.org Received: (qmail 87320 invoked by uid 500); 3 Jun 2004 14:34:20 -0000 Mailing-List: contact scm-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: dev@geronimo.apache.org Delivered-To: mailing list scm@geronimo.apache.org Received: (qmail 87136 invoked by uid 500); 3 Jun 2004 14:34:19 -0000 Delivered-To: apmail-incubator-geronimo-cvs@apache.org Received: (qmail 87106 invoked by uid 99); 3 Jun 2004 14:34:18 -0000 Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Thu, 03 Jun 2004 07:34:18 -0700 Received: (qmail 83746 invoked by uid 1782); 3 Jun 2004 14:34:04 -0000 Date: 3 Jun 2004 14:34:04 -0000 Message-ID: <20040603143404.83745.qmail@minotaur.apache.org> From: gdamour@apache.org To: incubator-geronimo-cvs@apache.org Subject: cvs commit: incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging CommunicationException.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N gdamour 2004/06/03 07:34:04 Modified: sandbox/messaging/src/java/org/apache/geronimo/messaging CommunicationException.java Log: Makes it a RuntimeException Revision Changes Path 1.2 +3 -2 incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/CommunicationException.java Index: CommunicationException.java =================================================================== RCS file: /home/cvs/incubator-geronimo/sandbox/messaging/src/java/org/apache/geronimo/messaging/CommunicationException.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- CommunicationException.java 11 May 2004 12:06:41 -0000 1.1 +++ CommunicationException.java 3 Jun 2004 14:34:04 -0000 1.2 @@ -22,7 +22,8 @@ * * @version $Revision$ $Date$ */ -public class CommunicationException extends Exception { +public class CommunicationException extends RuntimeException +{ public CommunicationException(String aMessage) { super(aMessage);