Fixed #SWS-75: Java 1.5+ Constructor Used for IllegalStateException

This commit is contained in:
Arjen Poutsma
2006-12-26 10:51:48 +00:00
parent 7954363e21
commit 5d13a6ab33

View File

@@ -65,7 +65,7 @@ public class StaxEventXmlReader extends StaxXmlReader {
}
}
catch (XMLStreamException ex) {
throw new IllegalStateException("Could not read first element: " + ex.getMessage(), ex);
throw new IllegalStateException("Could not read first element: " + ex.getMessage());
}
this.reader = reader;