class FastlaneCore::Interface::FastlaneError

Attributes

error_info[R]
show_github_issues[R]

Public Class Methods

new(show_github_issues: false, error_info: nil) click to toggle source
# File fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb, line 9
def initialize(show_github_issues: false, error_info: nil)
  @show_github_issues = show_github_issues
  @error_info = error_info
end

Public Instance Methods

prefix() click to toggle source
# File fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb, line 14
def prefix
  '[USER_ERROR]'
end