Saw the earlier discus- sion about what csvgetl should return
Typical usage looks like this:
|
---|
prints | |||
---|---|---|---|
Use exceptions only for exceptional situations. Some languages provide exceptions to catch unusual situations and recover from them; they provide an alternate flow of control when something bad happens. Exceptions should not be used for handling expected return values. Reading from a file will eventually produce an end of file; this should be handled with a return value, not by an exception.
In Java, one writes