Exception: Fix::Error::SpecificationNotFound

Inherits:
NameError
  • Object
show all
Defined in:
lib/fix/error/specification_not_found.rb

Overview

Error raised when a specification cannot be found at runtime

Instance Method Summary collapse

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