01 public class ParameterNotFoundException extends Exception 
02 
03  public ParameterNotFoundException() { 
04   super()
05  
06 
07  public ParameterNotFoundException(String s) { 
08   super(s)
09  
10 }