Exception: RspecStarter::StepStopper

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

Overview

This error is raised when a step wants to gracefully stop execution. It does not prevent later steps from running. It only ends on the current step execution.

Instance Method Summary collapse

Constructor Details

#initialize(msg = "") ⇒ StepStopper

Returns a new instance of StepStopper.



5
6
7
# File 'lib/rspec_starter/errors/step_stopper.rb', line 5

def initialize(msg="")
  super
end