- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 30 for MavenException (0.11 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java
*/ package org.apache.maven.api.plugin; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.services.MavenException; /** * An exception occurring during the execution of a plugin. * * @since 4.0.0 */ @Experimental public class MojoException extends MavenException { protected Object source; protected String longMessage; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon May 13 09:53:45 UTC 2024 - 2.5K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParserException.java
* under the License. */ package org.apache.maven.api.spi; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.services.MavenException; @Experimental public class ModelParserException extends MavenException { /** * The one-based index of the line containing the error. */ private final int lineNumber; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Sep 22 07:25:10 UTC 2023 - 1.9K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java
* under the License. */ package org.apache.maven.api.cli; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.services.MavenException; /** * Represents an exception that occurs during the invocation of a Maven build or command. * This exception is typically thrown when there are errors during the execution of a Maven
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmServiceException.java
*/ package org.apache.maven.api.services; import java.io.Serial; import org.apache.maven.api.annotations.Experimental; @Experimental public class ChecksumAlgorithmServiceException extends MavenException { @Serial private static final long serialVersionUID = 1201171469179367694L; public ChecksumAlgorithmServiceException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerException.java
package org.apache.maven.api.services; import java.io.Serial; import org.apache.maven.api.annotations.Experimental; /** * @since 4.0.0 */ @Experimental public class ArtifactInstallerException extends MavenException { /** * */ @Serial private static final long serialVersionUID = 3652561971360586373L; /** * @param message the message of the error * @param e {@link Exception}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderException.java
import org.apache.maven.api.annotations.Experimental; /** * The Exception class throw by the {@link ProjectBuilder} service. * * @since 4.0.0 */ @Experimental public class ProjectBuilderException extends MavenException { @Serial private static final long serialVersionUID = -7629871850875943799L; /** * @param message the message to give * @param e the {@link Exception} */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PrompterException.java
import org.apache.maven.api.annotations.Experimental; /** * The Exception class throw by the {@link Prompter} service. * * @since 4.0.0 */ @Experimental public class PrompterException extends MavenException { @Serial private static final long serialVersionUID = -3505070928479515081L; /** * @param message the message to give * @param e the {@link Exception} */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/SuperPomProviderException.java
package org.apache.maven.api.services; import java.io.Serial; /** * Exceptions thrown by the {@link SuperPomProvider} service. * * @since 4.0.0 */ public class SuperPomProviderException extends MavenException { @Serial private static final long serialVersionUID = -8659892034004509331L; public SuperPomProviderException() { super(); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainManagerException.java
import org.apache.maven.api.annotations.Experimental; /** * The Exception class throw by the {@link ToolchainManager}. * * @since 4.0.0 */ @Experimental public class ToolchainManagerException extends MavenException { @Serial private static final long serialVersionUID = -9465854226608498L; /** * @param message the message to give * @param e the {@link Exception} */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProviderException.java
import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; /** * @since 4.0.0 */ @Experimental @Consumer public class TransportProviderException extends MavenException { @Serial private static final long serialVersionUID = -6066070072576465969L; public TransportProviderException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0)