1 16 17 package org.springframework.beans; 18 19 import java.beans.PropertyChangeEvent ; 20 21 import org.springframework.core.ErrorCoded; 22 23 30 public abstract class PropertyAccessException extends BeansException implements ErrorCoded { 31 32 private PropertyChangeEvent propertyChangeEvent; 33 34 35 41 public PropertyAccessException(PropertyChangeEvent propertyChangeEvent, String msg, Throwable cause) { 42 super(msg, cause); 43 this.propertyChangeEvent = propertyChangeEvent; 44 } 45 46 51 public PropertyAccessException(String msg, Throwable cause) { 52 super(msg, cause); 53 } 54 55 56 60 public PropertyChangeEvent getPropertyChangeEvent() { 61 return propertyChangeEvent; 62 } 63 64 } 65 | Popular Tags |