Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ParseException (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    }
                } catch(Exception e) {
                    throw (ParseException) new ParseException("Unable to parse included ivy file for " + parentOrganisation + "#" + parentModule + ";" + parentRevision, 0).initCause(e);
                }
    
                if (parent == null) {
                    throw new ParseException("Unable to parse included ivy file for " + parentOrganisation + "#" + parentModule + ";" + parentRevision, 0);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                            // This file can only contain options, not args (goals or phases)
                            throw new ParseException("Unrecognized maven.config file entries: " + unrecognized);
                        }
                    }
                }
            } catch (ParseException e) {
                System.err.println("Unable to parse maven.config file options: " + e.getMessage());
                cliManager.displayHelp(System.out);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top