Exception: AppEngine::Exec::BadConfigFileFormat

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

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config_path) ⇒ BadConfigFileFormat

Returns a new instance of BadConfigFileFormat.



143
144
145
146
# File 'lib/appengine/exec.rb', line 143

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

Instance Attribute Details

#config_pathObject (readonly)

Returns the value of attribute config_path.



147
148
149
# File 'lib/appengine/exec.rb', line 147

def config_path
  @config_path
end