- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for MavenException (0.36 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/MavenException.java
* * @since 4.0.0 */ @Experimental public class MavenException extends RuntimeException { @Serial private static final long serialVersionUID = 9027638326336093132L; public MavenException() {} public MavenException(String message) { super(message); } public MavenException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - 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/xml/XmlReaderException.java
package org.apache.maven.api.services.xml; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.services.MavenException; /** * An exception thrown while reading an XML file. * * @since 4.0.0 */ @Experimental public class XmlReaderException extends MavenException { private final Location location; /** * @param message the message for the exception
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 1.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/cache/MavenExecutionException.java
import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.services.MavenException; /** * Exception thrown when an error occurs during Maven execution. * This exception wraps the original cause of the execution failure. * * @since 4.0.0 */ @Experimental public class MavenExecutionException extends MavenException { /** * Constructs a new MavenExecutionException with the specified cause.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 1.4K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelTransformerException.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 ModelTransformerException extends MavenException { public ModelTransformerException() { this(null, null); } public ModelTransformerException(String message) { this(message, null);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Sep 12 06:15:53 UTC 2024 - 1.4K 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 Sep 07 03:35:12 UTC 2025 - 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/ToolchainFactoryException.java
/** * Exception thrown when toolchain factory operations fail. * * <p>This exception wraps errors that occur during toolchain creation or initialization.</p> */ public class ToolchainFactoryException extends MavenException { public ToolchainFactoryException(String message) { super(message); } public ToolchainFactoryException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 1.3K bytes - Viewed (0) -
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 Sep 07 03:35:12 UTC 2025 - Last Modified: Mon May 13 09:53:45 UTC 2024 - 2.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerException.java
import org.apache.maven.api.annotations.Experimental; /** * An artifact could not correctly being deployed. * * @since 4.0.0 */ @Experimental public class ArtifactDeployerException extends MavenException { /** * */ @Serial private static final long serialVersionUID = 7421964724059077698L; /** * @param message the message of the error * @param e {@link Exception}
Registered: Sun Sep 07 03:35:12 UTC 2025 - 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/VersionParserException.java
import org.apache.maven.api.annotations.Experimental; /** * The Exception class thrown by {@link VersionParser}. * * @since 4.0.0 */ @Experimental public class VersionParserException extends MavenException { @Serial private static final long serialVersionUID = 1504740189114877333L; /** * @param message the message to give * @param e the {@link Exception} */
Registered: Sun Sep 07 03:35:12 UTC 2025 - 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/LookupException.java
import org.apache.maven.api.annotations.Experimental; /** * The Exception class throw by the {@link Lookup} service. * * @since 4.0.0 */ @Experimental public class LookupException extends MavenException { @Serial private static final long serialVersionUID = -6259322450070320286L; public LookupException(String message) { super(message); } /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.5K bytes - Viewed (0)