Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getRepositoryId (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/InvalidRepositoryException.java

            this.repositoryId = null;
        }
    
        public InvalidRepositoryException(String message, String repositoryId) {
            super(message);
            this.repositoryId = repositoryId;
        }
    
        public String getRepositoryId() {
            return repositoryId;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java

            super("While configuring wagon for '" + repositoryId + "': " + message);
    
            this.repositoryId = repositoryId;
            this.originalMessage = message;
        }
    
        public final String getRepositoryId() {
            return repositoryId;
        }
    
        public final String getOriginalMessage() {
            return originalMessage;
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
Back to top