Exception: GoodData::NoProjectError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/gooddata/exceptions/no_project_error.rb

Constant Summary collapse

DEFAULT_MSG =
'You have to provide "project_id". You can either provide ' \
'it through -p flag or even better way is to fill it in in ' \
'your Goodfile under key "project_id". If you just started ' \
'a project you have to create it first. One way might be ' \
'through "gooddata project build"'

Instance Method Summary collapse

Constructor Details

#initialize(msg = DEFAULT_MSG) ⇒ NoProjectError

Returns a new instance of NoProjectError.



15
16
17
# File 'lib/gooddata/exceptions/no_project_error.rb', line 15

def initialize(msg = DEFAULT_MSG)
  super(msg)
end