Class UnresolvableModelException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.maven.model.resolution.UnresolvableModelException
-
- All Implemented Interfaces:
java.io.Serializable
public class UnresolvableModelException extends java.lang.Exception
Signals an error when resolving the path to an external model.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
artifactId
The artifact id of the unresolvable model.private java.lang.String
groupId
The group id of the unresolvable model.private java.lang.String
version
The version of the unresolvable model.
-
Constructor Summary
Constructors Constructor Description UnresolvableModelException(java.lang.String message, java.lang.String groupId, java.lang.String artifactId, java.lang.String version)
Creates a new exception with specified detail message.UnresolvableModelException(java.lang.String message, java.lang.String groupId, java.lang.String artifactId, java.lang.String version, java.lang.Throwable cause)
Creates a new exception with specified detail message and cause.UnresolvableModelException(java.lang.Throwable cause, java.lang.String groupId, java.lang.String artifactId, java.lang.String version)
Creates a new exception with specified cause
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getArtifactId()
Gets the artifact id of the unresolvable model.java.lang.String
getGroupId()
Gets the group id of the unresolvable model.java.lang.String
getVersion()
Gets the version of the unresolvable model.
-
-
-
Constructor Detail
-
UnresolvableModelException
public UnresolvableModelException(java.lang.String message, java.lang.String groupId, java.lang.String artifactId, java.lang.String version, java.lang.Throwable cause)
Creates a new exception with specified detail message and cause.- Parameters:
message
- The detail message, may benull
.groupId
- The group id of the unresolvable model, may benull
.artifactId
- The artifact id of the unresolvable model, may benull
.version
- The version of the unresolvable model, may benull
.cause
- The cause, may benull
.
-
UnresolvableModelException
public UnresolvableModelException(java.lang.String message, java.lang.String groupId, java.lang.String artifactId, java.lang.String version)
Creates a new exception with specified detail message.- Parameters:
message
- The detail message, may benull
.groupId
- The group id of the unresolvable model, may benull
.artifactId
- The artifact id of the unresolvable model, may benull
.version
- The version of the unresolvable model, may benull
.
-
UnresolvableModelException
public UnresolvableModelException(java.lang.Throwable cause, java.lang.String groupId, java.lang.String artifactId, java.lang.String version)
Creates a new exception with specified cause- Parameters:
cause
-groupId
-artifactId
-version
-
-
-
Method Detail
-
getGroupId
public java.lang.String getGroupId()
Gets the group id of the unresolvable model.- Returns:
- The group id of the unresolvable model, can be empty but never
null
.
-
getArtifactId
public java.lang.String getArtifactId()
Gets the artifact id of the unresolvable model.- Returns:
- The artifact id of the unresolvable model, can be empty but never
null
.
-
getVersion
public java.lang.String getVersion()
Gets the version of the unresolvable model.- Returns:
- The version of the unresolvable model, can be empty but never
null
.
-
-