diff options
Diffstat (limited to 'src/xmlfilereader.cpp')
-rw-r--r-- | src/xmlfilereader.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xmlfilereader.cpp b/src/xmlfilereader.cpp index 216c08a..dd4bc82 100644 --- a/src/xmlfilereader.cpp +++ b/src/xmlfilereader.cpp | |||
@@ -1,4 +1,5 @@ | |||
1 | #include "xmlfilereader.h" | 1 | #include "xmlfilereader.h" |
2 | #include "xmlexception.h" | ||
2 | #include <string.h> | 3 | #include <string.h> |
3 | 4 | ||
4 | XmlFileReader::XmlFileReader( const char *sFile, bool bStrip ) | 5 | XmlFileReader::XmlFileReader( const char *sFile, bool bStrip ) |
@@ -8,7 +9,7 @@ XmlFileReader::XmlFileReader( const char *sFile, bool bStrip ) | |||
8 | 9 | ||
9 | if( fh == NULL ) | 10 | if( fh == NULL ) |
10 | { | 11 | { |
11 | reportError("Couldn't open file."); | 12 | throw XmlException("Couldn't open file: %s", sFile ); |
12 | //nError = 1; | 13 | //nError = 1; |
13 | } | 14 | } |
14 | else | 15 | else |
@@ -50,7 +51,7 @@ char XmlFileReader::getChar( int nIndex ) | |||
50 | } | 51 | } |
51 | else | 52 | else |
52 | { | 53 | { |
53 | return '\0'; | 54 | throw XmlException("End of XML stream read."); |
54 | } | 55 | } |
55 | } | 56 | } |
56 | 57 | ||