Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
InvalidConfigurationException |
|
| 1.0;1 |
1 | package com.simpligility.maven.plugins.androidndk; | |
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 | 0 | super( message ); |
13 | 0 | } |
14 | } |