Exception: Gotta::Run::Error::RuntimeScriptNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/gotta/run/errors.rb

Overview

This error is raised when a runtime script cannot be found in a given path.

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ RuntimeScriptNotFound

Returns a new instance of RuntimeScriptNotFound.



24
25
26
27
# File 'lib/gotta/run/errors.rb', line 24

def initialize(path)
  msg = "Could not find runtime script '#{path}'."
  super msg
end