1 55 package org.apache.avalon.framework.parameters; 56 57 import org.apache.avalon.framework.CascadingException; 58 59 66 public final class ParameterException 67 extends CascadingException 68 { 69 74 public ParameterException( final String message ) 75 { 76 this( message, null ); 77 } 78 79 85 public ParameterException( final String message, final Throwable throwable ) 86 { 87 super( message, throwable ); 88 } 89 } 90 | Popular Tags |