[teiid-commits] teiid SVN: r933 - trunk/common-core/src/main/java/com/metamatrix/api/exception.

teiid-commits at lists.jboss.org teiid-commits at lists.jboss.org
Wed May 13 16:07:21 EDT 2009


Author: vhalbert at redhat.com
Date: 2009-05-13 16:07:21 -0400 (Wed, 13 May 2009)
New Revision: 933

Modified:
   trunk/common-core/src/main/java/com/metamatrix/api/exception/MultipleException.java
Log:
Teiid-592 - added the no-arg constructore to fix the exception.

Modified: trunk/common-core/src/main/java/com/metamatrix/api/exception/MultipleException.java
===================================================================
--- trunk/common-core/src/main/java/com/metamatrix/api/exception/MultipleException.java	2009-05-13 19:38:15 UTC (rev 932)
+++ trunk/common-core/src/main/java/com/metamatrix/api/exception/MultipleException.java	2009-05-13 20:07:21 UTC (rev 933)
@@ -44,7 +44,15 @@
     /** An error code. */
     private String code;
     
+    
     /**
+     * No-arg Constructor
+     */
+    public MultipleException() {
+    	super();
+    }
+    
+    /**
      * Construct an instance with the set of exceptions and error message
      * specified.
      *




More information about the teiid-commits mailing list