Sha256: 423beb676f7ac1aad98c980f3b2f399d1009a5b8e4074bb46ce7d3bb2c48226e

Contents?: true

Size: 523 Bytes

Versions: 3

Compression:

Stored size: 523 Bytes

Contents

require_relative 'fastlane_exception'

module FastlaneCore
  class Interface
    class FastlaneError < FastlaneException
      attr_reader :show_github_issues
      attr_reader :error_info

      def initialize(show_github_issues: false, error_info: nil)
        @show_github_issues = show_github_issues
        @error_info = error_info
      end

      def prefix
        '[USER_ERROR]'
      end
    end
  end
end

class Exception
  def fastlane_should_report_metrics?
    return false
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fastlane_hotfix-2.165.1 fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb
fastlane_hotfix-2.165.0 fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb
fastlane_hotfix-2.187.0 fastlane_core/lib/fastlane_core/ui/errors/fastlane_error.rb