1 17 package org.alfresco.repo.security.authority; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 public class AuthorityException extends AlfrescoRuntimeException 22 { 23 24 27 private static final long serialVersionUID = -5367993045129604445L; 28 29 public AuthorityException(String msgId) 30 { 31 super(msgId); 32 } 33 34 public AuthorityException(String msgId, Object [] msgParams) 35 { 36 super(msgId, msgParams); 37 } 38 39 public AuthorityException(String msgId, Throwable cause) 40 { 41 super(msgId, cause); 42 } 43 44 public AuthorityException(String msgId, Object [] msgParams, Throwable cause) 45 { 46 super(msgId, msgParams, cause); 47 } 48 49 } 50 | Popular Tags |