* if an invalid file is provided
*///TODO Further test if the given file is valid
public void setOutputFile(File selectedFile)
throws InvalidOutputFileException {
if (selectedFile == null) {
throw new InvalidOutputFileException() ;
}// if
this.outputFile = selectedFile ;
}// setOutPutFile(File)