View Javadoc
1   package com.simpligility.maven.plugins.android;
2   
3   /**
4    * Exception for notifying about an invalid plugin configuration.
5    *
6    * @author Manfred Moser - manfred@simpligility.com
7    */
8   public class InvalidConfigurationException  extends RuntimeException
9   {
10      public InvalidConfigurationException( String message )
11      {
12          super( message );
13      }
14  }