Exception: AppEngine::Exec::NoSuchVersion

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

Overview

Exception raised when the given version could not be found, or no versions at all could be found for the given service.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(service, version = nil) ⇒ NoSuchVersion



323
324
325
326
327
328
329
330
331
# File 'lib/appengine/exec.rb', line 323

def initialize service, version = nil
  @service = service
  @version = version
  if version
    super "No such version \"#{version}\" for service \"#{service}\""
  else
    super "No versions found for service \"#{service}\""
  end
end

Instance Attribute Details

#serviceObject (readonly)

Returns the value of attribute service.



332
333
334
# File 'lib/appengine/exec.rb', line 332

def service
  @service
end

#versionObject (readonly)

Returns the value of attribute version.



333
334
335
# File 'lib/appengine/exec.rb', line 333

def version
  @version
end