1 17 18 package javax.el; 19 20 23 public class PropertyNotFoundException extends ELException { 24 25 28 public PropertyNotFoundException() { 29 super(); 30 } 31 32 35 public PropertyNotFoundException(String message) { 36 super(message); 37 } 38 39 43 public PropertyNotFoundException(String message, Throwable cause) { 44 super(message, cause); 45 } 46 47 50 public PropertyNotFoundException(Throwable cause) { 51 super(cause); 52 } 53 54 } 55 | Popular Tags |