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