Exception: Consolle::Errors::RuntimeError

Inherits:
ExecutionError show all
Defined in:
lib/consolle/errors.rb

Overview

Runtime error in executed code

Instance Method Summary collapse

Constructor Details

#initialize(message) ⇒ RuntimeError

Returns a new instance of RuntimeError.



51
52
53
# File 'lib/consolle/errors.rb', line 51

def initialize(message)
  super("Runtime error: #{message}")
end