1 17 package org.alfresco.repo.security.person; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 26 public class PersonException extends AlfrescoRuntimeException 27 { 28 29 32 private static final long serialVersionUID = 2802163127696444600L; 33 34 public PersonException(String msgId) 35 { 36 super(msgId); 37 } 38 39 public PersonException(String msgId, Object [] msgParams) 40 { 41 super(msgId, msgParams); 42 } 43 44 public PersonException(String msgId, Throwable cause) 45 { 46 super(msgId, cause); 47 } 48 49 public PersonException(String msgId, Object [] msgParams, Throwable cause) 50 { 51 super(msgId, msgParams, cause); 52 } 53 54 } 55 | Popular Tags |