Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getExitCode (0.56 sec)

  1. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java

            private final int exitCode;
    
            public ExitException(int exitCode) {
                super("EXIT=" + exitCode);
                this.exitCode = exitCode;
            }
    
            public int getExitCode() {
                return exitCode;
            }
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 10:47:37 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvn/MavenInvokerTestSupport.java

                                        .embedded(true)
                                        .build()));
                    } catch (InvokerException.ExitException e) {
                        exitCode = e.getExitCode();
                        exception = e;
                    } catch (Exception e) {
                        exception = e;
                    }
    
                    // dump things out
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Oct 21 12:17:55 UTC 2025
    - 6.8K bytes
    - Viewed (0)
Back to top