1 23 24 package javax.resource.spi; 25 26 import java.beans.PropertyDescriptor ; 27 28 35 public class InvalidPropertyException 36 extends javax.resource.ResourceException { 37 38 41 private PropertyDescriptor [] invalidProperties; 42 43 46 public InvalidPropertyException() { 47 super(); 48 } 49 50 55 public InvalidPropertyException(String message) { 56 super(message); 57 } 58 59 64 public InvalidPropertyException(Throwable cause) { 65 super(cause); 66 } 67 68 75 public InvalidPropertyException(String message, Throwable cause) { 76 super(message, cause); 77 } 78 79 86 public InvalidPropertyException(String message, String errorCode) { 87 super(message, errorCode); 88 } 89 90 93 public void setInvalidPropertyDescriptors( 94 PropertyDescriptor [] invalidProperties) { 95 this.invalidProperties = invalidProperties; 96 } 97 98 101 public PropertyDescriptor [] getInvalidPropertyDescriptors() { 102 return this.invalidProperties; 103 } 104 } 105 | Popular Tags |