Exception: Validity::Unsupported

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/validity.rb

Overview

A Validity specific error signifying an unsupported test framework.

Author

Matt Fornaciari ([email protected])

License

MIT

Instance Method Summary collapse

Constructor Details

#initialize(test_framework) ⇒ Unsupported

Returns a new instance of Unsupported.



56
57
58
# File 'lib/validity.rb', line 56

def initialize(test_framework)
  super(UNSUPPORTED % {test_framework: test_framework})
end