class Spaceship::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 spaceship/lib/spaceship/errors.rb, line 8
def preferred_error_info
  message ? [TITLE, message] : nil
end