Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getName (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

            if (t == null) {
                throw new NoSuchElementException(clazz.getName());
            }
            return t;
        }
    
        private Service lookup(Class<? extends Service> c) {
            try {
                return lookup.lookup(c);
            } catch (LookupException e) {
                NoSuchElementException nsee = new NoSuchElementException(c.getName());
                e.initCause(e);
                throw nsee;
            }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
Back to top