Sha256: b10e19b0f110d2c7665fa56ea1b987daf6f31a644eb3838ed19727b083ebfa47
Contents?: true
Size: 498 Bytes
Versions: 492
Compression:
Stored size: 498 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
492 entries across 492 versions & 5 rubygems