Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InvokerException (0.13 sec)

  1. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/PlexusContainerCapsuleFactory.java

        @Override
        public ContainerCapsule createContainerCapsule(C context) throws InvokerException {
            try {
                return new PlexusContainerCapsule(Thread.currentThread().getContextClassLoader(), container(context));
            } catch (Exception e) {
                throw new InvokerException("Failed to create plexus container capsule", e);
            }
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupInvoker.java

                            }
                            causes.add(e);
                        }
                    }
                }
                if (causes != null) {
                    InvokerException exception = new InvokerException("Unable to close context");
                    causes.forEach(exception::addSuppressed);
                    throw exception;
                }
            }
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 38K bytes
    - Viewed (0)
Back to top