class Spaceship::Client::BasicPreferredInfoError

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

Constants

TITLE

Public Instance Methods

preferred_error_info() click to toggle source
# File lib/spaceship/client.rb, line 42
def preferred_error_info
  message ? [TITLE, message] : nil
end