Sha256: ec4d5bdd808458d3f2573530b6852cdb77840562ef4e2d1b1732779e812f2912
Contents?: true
Size: 691 Bytes
Versions: 274
Compression:
Stored size: 691 Bytes
Contents
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
274 entries across 274 versions & 1 rubygems