Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
6answers
1k views

Equivalent of IllegalArgumentException of Java in C++

In Java if an input argument to a method is invalid, we can throw an IllegalArgumentException (which is of type RuntimeException). In C++, there is no notion of checked and unchecked exceptions. Is ...
3
votes
5answers
470 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 ...