-
Notifications
You must be signed in to change notification settings - Fork 2.8k
[MNG-8727] fix unnecessary throws leftover; promoting ExecutorException to Exception being stringent to ensure catch
#2336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -176,7 +176,7 @@ protected void disposeRuntimeCreatedRealms(Context context) { | |
| } | ||
| } | ||
| } catch (Exception e) { | ||
| throw new ExecutorException("Failed to dispose runtime created realms", e); | ||
| throw new RuntimeException(new ExecutorException("Failed to dispose runtime created realms", e)); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this makes zero sense. First make the actual exception a checked exception, then wrap it into a (untyped) runtime exception. Now there is no longer a ExecutorException thrown but a RuntimeException. AI Slop. |
||
| } | ||
| } | ||
|
|
||
|
|
@@ -285,7 +285,7 @@ protected Context doCreate(Path mavenHome, ExecutorRequest executorRequest) { | |
| args.toArray(new String[0]), r.cwd().toString(), stdout, stderr | ||
| }); | ||
| } catch (Exception e) { | ||
| throw new ExecutorException("Failed to execute", e); | ||
| throw new RuntimeException(new ExecutorException("Failed to execute", e)); | ||
| } | ||
| }); | ||
| } else { | ||
|
|
@@ -313,7 +313,7 @@ protected Context doCreate(Path mavenHome, ExecutorRequest executorRequest) { | |
| r.stdOut().orElse(null), | ||
| r.stdErr().orElse(null)); | ||
| } catch (Exception e) { | ||
| throw new ExecutorException("Failed to execute", e); | ||
| throw new RuntimeException(new ExecutorException("Failed to execute", e)); | ||
| } | ||
| }); | ||
| } | ||
|
|
@@ -328,7 +328,7 @@ protected Context doCreate(Path mavenHome, ExecutorRequest executorRequest) { | |
| commands, | ||
| keepAlive); | ||
| } catch (Exception e) { | ||
| throw new ExecutorException("Failed to create executor", e); | ||
| throw new RuntimeException(new ExecutorException("Failed to create executor", e)); | ||
| } finally { | ||
| Thread.currentThread().setContextClassLoader(originalClassLoader); | ||
| System.setProperties(originalProperties); | ||
|
|
@@ -402,7 +402,7 @@ protected void doClose(Context context) throws ExecutorException { | |
| } | ||
| } | ||
|
|
||
| protected void validate(ExecutorRequest executorRequest) throws ExecutorException {} | ||
| protected void validate(ExecutorRequest ignored) {} | ||
|
|
||
| protected URLClassLoader createMavenBootClassLoader(Path boot, List<URL> extraClasspath) { | ||
| ArrayList<URL> urls = new ArrayList<>(extraClasspath); | ||
|
|
@@ -413,11 +413,11 @@ protected URLClassLoader createMavenBootClassLoader(Path boot, List<URL> extraCl | |
| try { | ||
| urls.add(f.toUri().toURL()); | ||
| } catch (MalformedURLException e) { | ||
| throw new ExecutorException("Failed to build classpath: " + f, e); | ||
| throw new RuntimeException(new ExecutorException("Failed to build classpath: " + f, e)); | ||
| } | ||
| }); | ||
| } catch (IOException e) { | ||
| throw new ExecutorException("Failed to build classpath: " + e, e); | ||
| throw new RuntimeException(new ExecutorException("Failed to build classpath: " + e, e)); | ||
| } | ||
| if (urls.isEmpty()) { | ||
| throw new IllegalArgumentException("Invalid Maven home directory; boot is empty"); | ||
|
|
||
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
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sounds
importantenough, being worth to givededicationandsegregation.