Class UnresolvableModelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.maven.model.resolution.UnresolvableModelException
- All Implemented Interfaces:
Serializable
Deprecated.
Signals an error when resolving the path to an external model.
- See Also:
-
Constructor Summary
ConstructorDescriptionUnresolvableModelException
(String message, String groupId, String artifactId, String version) Deprecated.Creates a new exception with specified detail message.UnresolvableModelException
(String message, String groupId, String artifactId, String version, Throwable cause) Deprecated.Creates a new exception with specified detail message and cause.UnresolvableModelException
(Throwable cause, String groupId, String artifactId, String version) Deprecated.Creates a new exception with specified cause -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Gets the artifact id of the unresolvable model.Deprecated.Gets the group id of the unresolvable model.Deprecated.Gets the version of the unresolvable model.Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnresolvableModelException
public UnresolvableModelException(String message, String groupId, String artifactId, String version, Throwable cause) Deprecated.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(String message, String groupId, String artifactId, String version) Deprecated.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(Throwable cause, String groupId, String artifactId, String version) Deprecated.Creates a new exception with specified cause- Parameters:
cause
-groupId
-artifactId
-version
-
-
-
Method Details
-
getGroupId
Deprecated.Gets the group id of the unresolvable model.- Returns:
- The group id of the unresolvable model, can be empty but never
null
.
-
getArtifactId
Deprecated.Gets the artifact id of the unresolvable model.- Returns:
- The artifact id of the unresolvable model, can be empty but never
null
.
-
getVersion
Deprecated.Gets the version of the unresolvable model.- Returns:
- The version of the unresolvable model, can be empty but never
null
.
-
ModelBuilder
instead