Exception: AutomationObject::State::ScreenNotActiveError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/automation_object/state/_error.rb

Overview

Screen is not currently active

Instance Method Summary collapse

Constructor Details

#initialize(screen) ⇒ ScreenNotActiveError

Returns a new instance of ScreenNotActiveError



39
40
41
42
# File 'lib/automation_object/state/_error.rb', line 39

def initialize(screen)
  message = "#{screen} is not currently active"
  super(message)
end