josephwilk / pairwise

Ruby based tool for selecting a smaller number of test input combinations (using pairwise generation) rather than exhaustively testing all possible permutations.
http://wiki.github.com/josephwilk/pairwise
MIT License
83 stars 15 forks source link

Update InvalidInputData to use StandardError #8

Closed zeanrivera closed 5 years ago

zeanrivera commented 5 years ago

Ruby best practice is to inherit from StandardError over directly inheriting from the Exception class directly. This allows for methods which catch StandardError to safely catch errors without also catching high priority Exceptions like System Interrupts.

josephwilk commented 5 years ago

Thanks!