Exception: FastlaneCore::Interface::FastlaneShellError
- Inherits:
-
FastlaneException
- Object
- Exception
- StandardError
- FastlaneException
- FastlaneCore::Interface::FastlaneShellError
- Defined in:
- fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb
Instance Attribute Summary collapse
-
#show_github_issues ⇒ Object
readonly
Returns the value of attribute show_github_issues.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ FastlaneShellError
constructor
A new instance of FastlaneShellError.
- #prefix ⇒ Object
Methods inherited from FastlaneException
Methods inherited from StandardError
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( = {}) @show_github_issues = [:show_github_issues].nil? ? false : [:show_github_issues] end |
Instance Attribute Details
#show_github_issues ⇒ Object (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
#prefix ⇒ Object
12 13 14 |
# File 'fastlane_core/lib/fastlane_core/ui/errors/fastlane_shell_error.rb', line 12 def prefix '[SHELL_ERROR]' end |