Exception: Gotta::Run::Error::RuntimeScriptNotFound
- Inherits:
-
StandardError
- Object
- StandardError
- Gotta::Run::Error::RuntimeScriptNotFound
- 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
-
#initialize(path) ⇒ RuntimeScriptNotFound
constructor
A new instance of RuntimeScriptNotFound.
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 |