Exception: AppEngine::Exec::ConfigFileNotFound

Inherits:
UsageError
  • Object
show all
Defined in:
lib/appengine/exec.rb

Overview

Exception raised when the App Engine config file could not be found.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config_path) ⇒ ConfigFileNotFound

Returns a new instance of ConfigFileNotFound.



132
133
134
135
# File 'lib/appengine/exec.rb', line 132

def initialize config_path
  @config_path = config_path
  super "Config file #{config_path} not found."
end

Instance Attribute Details

#config_pathObject (readonly)

Returns the value of attribute config_path.



136
137
138
# File 'lib/appengine/exec.rb', line 136

def config_path
  @config_path
end