com.jayway.maven.plugins.android.InvalidConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-maven-plugin Show documentation
Show all versions of android-maven-plugin Show documentation
Maven Plugin for Android Development
package com.jayway.maven.plugins.android;
/**
* Exception for notifying about an invalid plugin configuration.
*
* @author Manfred Moser
*/
public class InvalidConfigurationException extends RuntimeException
{
public InvalidConfigurationException( String message )
{
super( message );
}
}