Sha256: 94165433217e746bc851f62206ebb3e899b3a26454eaa96a68886557a84d139b
Contents?: true
Size: 538 Bytes
Versions: 26
Compression:
Stored size: 538 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. require 'restclient/exceptions' module GoodData # Project Not Found class SegmentNotEmpty < RuntimeError DEFAULT_MSG = 'Segment you are trying to delete is not empty. Either clean it up or use force: true to force cleanup of clients.' def initialize(msg = DEFAULT_MSG) super(msg) end end end
Version data entries
26 entries across 26 versions & 2 rubygems