1 package org.jahia.services.usermanager; 2 3 4 5 public class UserPropertyReadOnlyException extends Exception { 6 7 public UserPropertyReadOnlyException(UserProperty property, String message) { 8 super(message); 9 this.property = property; 10 } 11 12 private UserProperty property; 13 public UserProperty getProperty () { 14 return property; 15 } 16 17 public void setProperty (UserProperty property) { 18 this.property = property; 19 } 20 } 21 | Popular Tags |