Exception: RspecStarter::StepError

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

Overview

This error is raised when execution should completely stop. The current step should be finalized before this error is raised. Once this error is raised, RspecStarter will halt and report a non-zero exit status to the user.

Instance Method Summary collapse

Constructor Details

#initialize(msg = "") ⇒ StepError

Returns a new instance of StepError.



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

def initialize(msg="")
  super
end