Return-Path: Delivered-To: apmail-db-ojb-dev-archive@www.apache.org Received: (qmail 28859 invoked from network); 22 Dec 2005 21:15:58 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 22 Dec 2005 21:15:58 -0000 Received: (qmail 61133 invoked by uid 500); 22 Dec 2005 21:15:57 -0000 Delivered-To: apmail-db-ojb-dev-archive@db.apache.org Received: (qmail 61099 invoked by uid 500); 22 Dec 2005 21:15:57 -0000 Mailing-List: contact ojb-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "OJB Developers List" Reply-To: "OJB Developers List" Delivered-To: mailing list ojb-dev@db.apache.org Received: (qmail 61088 invoked by uid 500); 22 Dec 2005 21:15:57 -0000 Received: (qmail 61085 invoked by uid 99); 22 Dec 2005 21:15:57 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 22 Dec 2005 13:15:57 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 22 Dec 2005 13:15:56 -0800 Received: (qmail 28673 invoked by uid 1797); 22 Dec 2005 21:15:36 -0000 Date: 22 Dec 2005 21:15:36 -0000 Message-ID: <20051222211536.28672.qmail@minotaur.apache.org> From: tomdz@apache.org To: db-ojb-cvs@apache.org Subject: cvs commit: db-ojb/src/java/org/apache/ojb/broker PBFactoryException.java OJBRuntimeException.java OJBException.java KeyConstraintViolatedException.java X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N tomdz 2005/12/22 13:15:36 Modified: src/java/org/apache/ojb/broker Tag: OJB_1_0_RELEASE PBFactoryException.java OJBRuntimeException.java OJBException.java KeyConstraintViolatedException.java Log: Added super-call to no-arg constructors Updated Javadoc Revision Changes Path No revision No revision 1.4.2.2 +1 -0 db-ojb/src/java/org/apache/ojb/broker/PBFactoryException.java Index: PBFactoryException.java =================================================================== RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/PBFactoryException.java,v retrieving revision 1.4.2.1 retrieving revision 1.4.2.2 diff -u -r1.4.2.1 -r1.4.2.2 --- PBFactoryException.java 21 Dec 2005 22:22:07 -0000 1.4.2.1 +++ PBFactoryException.java 22 Dec 2005 21:15:36 -0000 1.4.2.2 @@ -25,6 +25,7 @@ */ public PBFactoryException() { + super(); } /** 1.5.2.2 +3 -2 db-ojb/src/java/org/apache/ojb/broker/OJBRuntimeException.java Index: OJBRuntimeException.java =================================================================== RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/OJBRuntimeException.java,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.2 diff -u -r1.5.2.1 -r1.5.2.2 --- OJBRuntimeException.java 21 Dec 2005 22:22:07 -0000 1.5.2.1 +++ OJBRuntimeException.java 22 Dec 2005 21:15:36 -0000 1.5.2.2 @@ -18,7 +18,7 @@ import org.apache.commons.lang.exception.NestableRuntimeException; /** - * Base class of all runtime exceptions used in OJB. + * Base class of all unchecked exceptions used in OJB. * * @author Thomas Mahler * @version $Id$ @@ -30,6 +30,7 @@ */ public OJBRuntimeException() { + super(); } /** 1.5.2.2 +3 -2 db-ojb/src/java/org/apache/ojb/broker/OJBException.java Index: OJBException.java =================================================================== RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/OJBException.java,v retrieving revision 1.5.2.1 retrieving revision 1.5.2.2 diff -u -r1.5.2.1 -r1.5.2.2 --- OJBException.java 21 Dec 2005 22:22:08 -0000 1.5.2.1 +++ OJBException.java 22 Dec 2005 21:15:36 -0000 1.5.2.2 @@ -18,7 +18,7 @@ import org.apache.commons.lang.exception.NestableException; /** - * Base class of all exceptions used in OJB. + * Base class of all checked exceptions used in OJB. * * @author Thomas Mahler * @version $Id$ @@ -30,6 +30,7 @@ */ public OJBException() { + super(); } /** 1.5.2.3 +2 -1 db-ojb/src/java/org/apache/ojb/broker/KeyConstraintViolatedException.java Index: KeyConstraintViolatedException.java =================================================================== RCS file: /home/cvs/db-ojb/src/java/org/apache/ojb/broker/KeyConstraintViolatedException.java,v retrieving revision 1.5.2.2 retrieving revision 1.5.2.3 diff -u -r1.5.2.2 -r1.5.2.3 --- KeyConstraintViolatedException.java 21 Dec 2005 22:22:08 -0000 1.5.2.2 +++ KeyConstraintViolatedException.java 22 Dec 2005 21:15:36 -0000 1.5.2.3 @@ -30,6 +30,7 @@ */ public KeyConstraintViolatedException() { + super(); } /** --------------------------------------------------------------------- To unsubscribe, e-mail: ojb-dev-unsubscribe@db.apache.org For additional commands, e-mail: ojb-dev-help@db.apache.org