Exception: CovLoupe::ResultsetNotFoundError
- Defined in:
- lib/cov_loupe/errors.rb
Instance Attribute Summary
Attributes inherited from Error
Instance Method Summary collapse
Methods inherited from Error
Constructor Details
This class inherits a constructor from CovLoupe::Error
Instance Method Details
#user_friendly_message ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
# File 'lib/cov_loupe/errors.rb', line 66 def base = "File error: #{}" # Only add helpful tips in CLI and library modes, not MCP mode unless CovLoupe.context.mcp_mode? base += <<~HELP Try one of the following: - cd to a directory containing coverage/.resultset.json - Specify a resultset: cov-loupe -r PATH - Use -h for help: cov-loupe -h HELP end base end |