Sha256: 85050ba8fd1ba5a8a008c132009d7944b7433a585acf405b96ccd4bede50cfa8

Contents?: true

Size: 690 Bytes

Versions: 26

Compression:

Stored size: 690 Bytes

Contents

module FastlaneCore
  class Interface
    # Super class for exception types that we do not want to record
    # explictly 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

26 entries across 26 versions & 1 rubygems

Version Path
fastlane-2.33.0.beta.20170522010027 fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb
fastlane-2.33.0.beta.20170521010032 fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb
fastlane-2.33.0.beta.20170520010019 fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb
fastlane-2.32.1 fastlane_core/lib/fastlane_core/ui/errors/fastlane_common_error.rb
fastlane-2.33.0.beta.20170519010039 fastlane_core/lib/fastlane_core/ui/errors/fastlane_not_counted_error.rb
fastlane-2.32.0 fastlane_core/lib/fastlane_core/ui/errors/fastlane_not_counted_error.rb