Exception: Fix::Error::SpecificationNotFound
- Inherits:
-
NameError
- Object
- NameError
- Fix::Error::SpecificationNotFound
- Defined in:
- lib/fix/error/specification_not_found.rb
Overview
Error raised when a specification cannot be found at runtime
Instance Method Summary collapse
-
#initialize(name) ⇒ SpecificationNotFound
constructor
A new instance of SpecificationNotFound.
Constructor Details
#initialize(name) ⇒ SpecificationNotFound
Returns a new instance of SpecificationNotFound.
7 8 9 |
# File 'lib/fix/error/specification_not_found.rb', line 7 def initialize(name) super("Specification '#{name}' not found. Make sure it's defined before running the test.") end |