mirror of https://github.com/apache/maven.git
Forgot this one
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@219817 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5685fb9041
commit
18fa2476bc
|
@ -0,0 +1,17 @@
|
|||
package org.apache.maven.artifact.repository.metadata;
|
||||
|
||||
public class InvalidRepositoryMetadataException
|
||||
extends RepositoryMetadataManagementException
|
||||
{
|
||||
|
||||
public InvalidRepositoryMetadataException( RepositoryMetadata metadata, String message, Throwable cause )
|
||||
{
|
||||
super( metadata, message, cause );
|
||||
}
|
||||
|
||||
public InvalidRepositoryMetadataException( RepositoryMetadata metadata, String message )
|
||||
{
|
||||
super( metadata, message );
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue