Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for causal (0.15 sec)

  1. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    This patent license shall apply to the combination of the Contribution and
    the Program if, at the time the Contribution is added by the Contributor,
    such addition of the Contribution causes such combination to be covered by
    the Licensed Patents. The patent license shall not apply to any other combinations
    which include the Contribution. No hardware per se is licensed hereunder.
    
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

            Exception cause2 = new RuntimeException("loop") {
                @Override
                public synchronized Throwable getCause() {
                    return causeRef.get();
                }
            };
            causeRef.set(cause2);
    
            Plugin plugin = new Plugin();
            Exception cause = new PluginContainerException(plugin, null, null, cause2);
            cause2.initCause(cause);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginManagerException.java

            super(message, cause);
    
            this.project = project;
            pluginGroupId = plugin.getGroupId();
            pluginArtifactId = plugin.getArtifactId();
            pluginVersion = plugin.getVersion();
        }
    
        public PluginManagerException(Plugin plugin, String message, Throwable cause) {
            super(message, cause);
    
            pluginGroupId = plugin.getGroupId();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/ArtifactMetadataRetrievalException.java

        }
    
        /**
         * @param cause a cause
         * @deprecated use {@link #ArtifactMetadataRetrievalException(String, Throwable, Artifact)}
         */
        @Deprecated
        public ArtifactMetadataRetrievalException(Throwable cause) {
            this(null, cause, null);
        }
    
        /**
         * @param message a message
         * @param cause a cause
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/ProjectExecutionEvent.java

            this(session, project, null, cause);
        }
    
        public ProjectExecutionEvent(
                MavenSession session, MavenProject project, List<MojoExecution> executionPlan, Throwable cause) {
            this.session = session;
            this.project = project;
            this.executionPlan = executionPlan;
            this.cause = cause;
        }
    
        public MavenSession getSession() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolverException.java

        }
    
        /**
         * Creates a new exception with specified cause
         *
         * @param cause
         * @param groupId
         * @param artifactId
         * @param version
         */
        public ModelResolverException(Throwable cause, String groupId, String artifactId, String version) {
            super(cause);
            this.groupId = groupId;
            this.artifactId = artifactId;
            this.version = version;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java

         *
         * @param cause the cause which is saved for later retrieval by the {@link #getCause()} method.
         *              A {@code null} value is permitted, and indicates that the cause is nonexistent or unknown.
         */
        public MojoException(Throwable cause) {
            super(cause);
        }
    
        public String getLongMessage() {
            return longMessage;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 2.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequestPopulationException.java

            super(message);
        }
    
        public MavenExecutionRequestPopulationException(Throwable cause) {
            super(cause);
        }
    
        public MavenExecutionRequestPopulationException(String message, Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolationException.java

            super(message);
        }
    
        public ModelInterpolationException(String message, Throwable cause) {
            super(message, cause);
        }
    
        public ModelInterpolationException(String expression, String message, Throwable cause) {
            super("The POM expression: " + expression + " could not be evaluated. Reason: " + message, cause);
    
            this.expression = expression;
            this.originalMessage = message;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java

        }
    
        public ArtifactResolutionException(String message, Artifact artifact, Throwable cause) {
            super(message, artifact, null, cause);
        }
    
        public ArtifactResolutionException(
                String message, Artifact artifact, List<ArtifactRepository> remoteRepositories, Throwable cause) {
            super(message, artifact, remoteRepositories, cause);
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.5K bytes
    - Viewed (0)
Back to top