1 package org.apache.maven.plugin.descriptor; 2 3 import org.codehaus.plexus.configuration.PlexusConfigurationException; 4 5 20 21 public class InvalidPluginDescriptorException 22 extends PlexusConfigurationException 23 { 24 25 public InvalidPluginDescriptorException( String message, Throwable cause ) 26 { 27 super( message, cause ); 28 } 29 30 public InvalidPluginDescriptorException( String message ) 31 { 32 super( message ); 33 } 34 35 } 36 | Popular Tags |