1 package org.apache.maven.plugin.descriptor; 2 3 18 19 24 public class InvalidParameterException 25 extends InvalidPluginDescriptorException 26 { 27 public InvalidParameterException( String element, int i ) 28 { 29 super( "The " + element + " element in parameter # " + i + " is invalid. It cannot be null." ); 30 } 31 32 public InvalidParameterException( String message, Throwable cause ) 33 { 34 super( message, cause ); 35 } 36 } | Popular Tags |