Exception: TestMap::TraceInUseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/test_map/errors.rb

Overview

TraceInUseError is raised when a trace is already in use.

Class Method Summary collapse

Class Method Details

.defaultObject



6
7
8
9
10
11
# File 'lib/test_map/errors.rb', line 6

def self.default
  new <<~MSG
    Trace is already in use. Find for a second send of `#trace` and ensure
    you only use one. Use `#results` to get the results.
  MSG
end