I looking for a "the way its meant to be done" solution for the next problem:
I have a class called InputChecker, which takes an input file, checks the content of it, and if all is well, returns the file to next class (ExpofitAgent) for further actions.
However, if the file is not in the form as it should be, InputChecker generates an error message which says on which line of the file the error was found.
InputChecker doesn't print the error, it just generates the message which is printed later.
Since I'm doing it in python my method can return a file or a string. How to do a check if the file is ok without the need of including an additional flag?