Sha256: 468d7a3f48f5305e9b2b4fe618e8ec243258eeec68677c957e2654b89c89ab45
Contents?: true
Size: 730 Bytes
Versions: 661
Compression:
Stored size: 730 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
661 entries across 661 versions & 5 rubygems