public void setDescription(String description) throws ProfileException {
String oldDescription = this.description;
try {
vetoableChangeSupport.fireVetoableChange("description", oldDescription, description);
} catch (Exception e) {
throw new ProfileException(null, e);
}
this.description = description;
propertyChangeSupport.firePropertyChange("description", oldDescription, description);
}