class Google::Serverless::Exec::ConfigFileNotFound

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

Attributes

config_path[R]

Public Class Methods

new(config_path) click to toggle source
Calls superclass method
# File lib/google/serverless/exec.rb, line 303
def initialize config_path
  @config_path = config_path
  super "Config file #{config_path} not found."
end