Sha256: 739579960eaade3c64ca6f024a04534e7e8d21a1e9549790886d053e76eee8bd

Contents?: true

Size: 749 Bytes

Versions: 3

Compression:

Stored size: 749 Bytes

Contents

require_relative 'fastlane_exception'

module FastlaneCore
  class Interface
    # Super class for exception types that we do not want to record
    # explicitly as crashes or user errors
    class FastlaneCommonException < FastlaneException; end

    # Raised when there is a build failure in xcodebuild
    class FastlaneBuildFailure < FastlaneCommonException; end

    # Raised when a test fails when being run by tools such as scan or snapshot
    class FastlaneTestFailure < FastlaneCommonException; end

    # Raise this type of exception when a failure caused by a third party
    # dependency (i.e. xcodebuild, gradle, slather) happens.
    class FastlaneDependencyCausedException < FastlaneCommonException; end
  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_common_error.rb
fastlane_hotfix-2.165.0 fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb
fastlane_hotfix-2.187.0 fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb