com.simpligility.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
The newest version!
package com.simpligility.maven.plugins.android;
/**
* Exception for notifying about an invalid plugin configuration.
*
* @author Manfred Moser - [email protected]
*/
public class InvalidConfigurationException extends RuntimeException
{
public InvalidConfigurationException( String message )
{
super( message );
}
}