Exception: Spaceship::AppStoreLocaleError
- Inherits:
-
BasicPreferredInfoError
- Object
- Exception
- StandardError
- BasicPreferredInfoError
- Spaceship::AppStoreLocaleError
- Defined in:
- spaceship/lib/spaceship/errors.rb
Overview
Base class for errors coming from App Store Connect locale changes
Direct Known Subclasses
AppStoreAppPreviewError, AppStoreLocalizationError, AppStoreScreenshotError
Constant Summary
Constants inherited from BasicPreferredInfoError
BasicPreferredInfoError::TITLE
Instance Method Summary collapse
-
#initialize(msg) ⇒ AppStoreLocaleError
constructor
A new instance of AppStoreLocaleError.
-
#show_github_issues ⇒ Object
no need to search github issues since the error is specific.
Methods inherited from BasicPreferredInfoError
Methods inherited from StandardError
Methods inherited from Exception
#fastlane_should_report_metrics?
Constructor Details
#initialize(msg) ⇒ AppStoreLocaleError
Returns a new instance of AppStoreLocaleError.
104 105 106 107 |
# File 'spaceship/lib/spaceship/errors.rb', line 104 def initialize(msg) @message = (msg ? "An exception occurred for locale: #{msg}." : nil) super end |
Instance Method Details
#show_github_issues ⇒ Object
no need to search github issues since the error is specific
110 111 112 |
# File 'spaceship/lib/spaceship/errors.rb', line 110 def show_github_issues false end |