Sha256: 2ff8d65b0cc7dc0b78c403bbe38e6060784181192044a0315df04cd18bf175be
Contents?: true
Size: 630 Bytes
Versions: 29
Compression:
Stored size: 630 Bytes
Contents
# encoding: UTF-8 # # Copyright (c) 2010-2015 GoodData Corporation. All rights reserved. # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. module GoodData class NoProjectError < RuntimeError 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"' def initialize(msg = DEFAULT_MSG) super(msg) end end end
Version data entries
29 entries across 29 versions & 2 rubygems