- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for handleException (0.05 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java
throw e; } catch (Exception e) { // other exceptions (including InvokerException but sans Exit, see above): we need to inform user throw handleException(context, e); } } finally { Thread.currentThread().setContextClassLoader(oldCL); System.setProperties(oldProps); } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Oct 28 13:01:07 UTC 2025 - 43.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java
List<MavenProject> failedProjects = new ArrayList<>(); for (Throwable exception : result.getExceptions()) { ExceptionSummary summary = handler.handleException(exception); logSummary(context, summary, references, ""); if (exception instanceof LifecycleExecutionException lifecycleExecutionException) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 11 17:20:46 UTC 2025 - 28.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
List<MavenProject> failedProjects = new ArrayList<>(); for (Throwable exception : result.getExceptions()) { ExceptionSummary summary = handler.handleException(exception); logSummary(summary, references, "", cliRequest.showErrors); if (exception instanceof LifecycleExecutionException lifecycleExecutionException) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 78.1K bytes - Viewed (0)