class Gotta::Run::Error::RuntimeScriptNotFound

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

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/gotta/run/errors.rb, line 24
def initialize(path)
  msg = "Could not find runtime script '#{path}'."
  super msg
end