Refactor ProGuard class for improved readability and consistency#471
Open
Jonatha1983 wants to merge 2 commits intoGuardsquare:masterfrom
Open
Refactor ProGuard class for improved readability and consistency#471Jonatha1983 wants to merge 2 commits intoGuardsquare:masterfrom
Jonatha1983 wants to merge 2 commits intoGuardsquare:masterfrom
Conversation
Author
|
Hi It is really hard to know what is the real issue with the Gradle run output: Even with --stacktrace since the original error message was not included in the output. |
Author
|
By adding the original exception I can see the real problem: I tested this locally |
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Added a more descriptive error message when encountering IncompleteClassHierarchyException. The enhanced message now includes:
A clear indication of the missing classes issue
Direct link to the troubleshooting documentation
Original exception as the cause for better debugging
Changes
Wrapped IncompleteClassHierarchyException with RuntimeException
Added formatted multi-line error message with troubleshooting URL
Preserved stack trace by passing original exception
Impact
Users will now receive clearer guidance when encountering class hierarchy issues, making it easier to identify and resolve missing class dependencies.