Running the program with an unimplemented format results in an unhandled System.NotImplementedException.
I understand that some functionality is not yet implemented, but a civilised user-friendly application should avoid this and translate these errors into simple error messages on standard error output.
This is because users do not care about your stack traces, nor are they interested in what exact exception caused this; this information should be written into a log file.
Running the program with an unimplemented format results in an unhandled
System.NotImplementedException
.I understand that some functionality is not yet implemented, but a civilised user-friendly application should avoid this and translate these errors into simple error messages on standard error output.
This is because users do not care about your stack traces, nor are they interested in what exact exception caused this; this information should be written into a log file.