Exception: FastlaneCore::Interface::FastlaneShellError

Inherits:
FastlaneException show all
Defined in:
fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from FastlaneException

#caused_by_calling_ui_method?

Methods inherited from StandardError

#exit_status

Methods inherited from Exception

#fastlane_should_report_metrics?

Constructor Details

#initialize(options = {}) ⇒ FastlaneShellError

Returns a new instance of FastlaneShellError.



8
9
10
# File 'fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb', line 8

def initialize(options = {})
  @show_github_issues = options[:show_github_issues].nil? ? false : options[:show_github_issues]
end

Instance Attribute Details

#show_github_issuesObject (readonly)

Returns the value of attribute show_github_issues.



6
7
8
# File 'fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb', line 6

def show_github_issues
  @show_github_issues
end

Instance Method Details

#prefixObject



12
13
14
# File 'fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb', line 12

def prefix
  '[SHELL_ERROR]'
end