Index: src/exceptions/OFMalformedXMLException.m ================================================================== --- src/exceptions/OFMalformedXMLException.m +++ src/exceptions/OFMalformedXMLException.m @@ -49,16 +49,16 @@ - (OFString*)description { if (_parser != nil) return [OFString stringWithFormat: - @"The XML parser in class %@ encountered malformed XML!", - _inClass]; + @"The XML parser in class %@ encountered malformed XML in " + @"line %zd!", _inClass, [_parser lineNumber]]; else return @"An XML parser encountered malformed XML!"; } - (OFXMLParser*)parser { OF_GETTER(_parser, false) } @end