You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by jo...@apache.org on 2010/02/16 12:53:56 UTC

svn commit: r910490 - /incubator/uima/sandbox/trunk/Lucas/src/main/java/org/apache/uima/lucas/LuceneDocumentAE.java

Author: joern
Date: Tue Feb 16 11:53:55 2010
New Revision: 910490

URL: http://svn.apache.org/viewvc?rev=910490&view=rev
Log:
UIMA-1553: Removed the call to the IOException Java 6 API constructor.

Modified:
    incubator/uima/sandbox/trunk/Lucas/src/main/java/org/apache/uima/lucas/LuceneDocumentAE.java

Modified: incubator/uima/sandbox/trunk/Lucas/src/main/java/org/apache/uima/lucas/LuceneDocumentAE.java
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/Lucas/src/main/java/org/apache/uima/lucas/LuceneDocumentAE.java?rev=910490&r1=910489&r2=910490&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/Lucas/src/main/java/org/apache/uima/lucas/LuceneDocumentAE.java (original)
+++ incubator/uima/sandbox/trunk/Lucas/src/main/java/org/apache/uima/lucas/LuceneDocumentAE.java Tue Feb 16 11:53:55 2010
@@ -131,9 +131,9 @@
 			return new MappingFileReader(parser, elementMappers);
 			
 		} catch (ParserConfigurationException e) {
-			throw new IOException("Can't build SAXParser", e);
+			throw new IOException("Can't build SAXParser: " + e.getMessage());
 		} catch (SAXException e) {
-			throw new IOException("Can't build SAXParser", e);
+			throw new IOException("Can't build SAXParser: " + e.getMessage());
 		}
 	}