1 16 package javax.faces.el; 17 18 22 public class MethodNotFoundException extends EvaluationException 23 { 24 25 27 public MethodNotFoundException() 29 { 30 super(); 31 } 32 33 public MethodNotFoundException(String message) 34 { 35 super(message); 36 } 37 38 public MethodNotFoundException(String message, Throwable cause) 39 { 40 super(message, cause); 41 } 42 43 public MethodNotFoundException(Throwable cause) 44 { 45 super(cause); 46 } 47 } 48 | Popular Tags |