Exception: Screenplay::UnknownActorException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/screenplay/actor.rb

Instance Method Summary collapse

Constructor Details

#initialize(scenario, name) ⇒ UnknownActorException

Returns a new instance of UnknownActorException.



17
18
19
# File 'lib/screenplay/actor.rb', line 17

def initialize(scenario, name)
  super("The scenario #{scenario} uses unknown actor #{name}.")
end