You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2009/04/20 15:56:42 UTC

svn commit: r766697 - /activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/exceptions/NumberFormatException.h

Author: tabish
Date: Mon Apr 20 13:56:42 2009
New Revision: 766697

URL: http://svn.apache.org/viewvc?rev=766697&view=rev
Log:
Fix missing call to base class constructor.

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/exceptions/NumberFormatException.h

Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/exceptions/NumberFormatException.h
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/exceptions/NumberFormatException.h?rev=766697&r1=766696&r2=766697&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/exceptions/NumberFormatException.h (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/decaf/lang/exceptions/NumberFormatException.h Mon Apr 20 13:56:42 2009
@@ -35,7 +35,7 @@
         /**
          * Default Constructor
          */
-        NumberFormatException() {}
+        NumberFormatException() : Exception() {}
 
         /**
          * Conversion Constructor from some other Exception
@@ -49,7 +49,7 @@
         /**
          * Copy Constructor
          */
-        NumberFormatException(const NumberFormatException& ex) throw()
+        NumberFormatException( const NumberFormatException& ex ) throw()
         : Exception() {
             *(Exception*)this = ex;
         }