Exception: Spaceship::Client::BasicPreferredInfoError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/spaceship/client.rb

Overview

Base class for errors that want to present their message as preferred error info for fastlane error handling. See: fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb

Constant Summary collapse

TITLE =
'The request could not be completed because:'.freeze

Instance Method Summary collapse

Instance Method Details

#preferred_error_infoObject



42
43
44
# File 'lib/spaceship/client.rb', line 42

def preferred_error_info
  message ? [TITLE, message] : nil
end