Index: TECH/File/FileReader.cls.xml =================================================================== diff -u -r9 -r196 --- TECH/File/FileReader.cls.xml (.../FileReader.cls.xml) (revision 9) +++ TECH/File/FileReader.cls.xml (.../FileReader.cls.xml) (revision 196) @@ -31,7 +31,7 @@ Set ..FileCharacterStream.Filename = ..Bestand Do ..FileCharacterStream.Rewind() }Else{ - Set Exception = ##class(TECH.Exceptions.FileException).%New("Het bestand '"_..Bestand_"' bestaat niet.") + Set Exception = ##class(TECH.Exceptions.InvalidInputException).%New("Het bestand '"_..Bestand_"' bestaat niet.") Do ##class(TECH.ExceptionHandler).Throw(Exception) } Quit $$$OK @@ -56,7 +56,7 @@ Set Line = ..FileCharacterStream.ReadLine() } If (Line = "") { - Set Exception = ##class(TECH.Exceptions.FileException).%New("Einde van bestand '"_..Bestand_"' reeds bereikt.") + Set Exception = ##class(TECH.Exceptions.InvalidInputException).%New("Einde van bestand '"_..Bestand_"' reeds bereikt.") Do ##class(TECH.ExceptionHandler).Throw(Exception) } Quit Line