Tagged Questions
3
votes
5answers
476 views
Should a method ignore illegal input or raise an exception?
If a method checks it's input and detects illegal input, what should it do: Raise an exception (or use another error-mechanism) or do nothing/ignoring on the wrong input?
In Java the HashTable-class ...