1 17 package org.alfresco.repo.security.permissions; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 26 public class AccessDeniedException extends AlfrescoRuntimeException 27 { 28 29 32 private static final long serialVersionUID = -4451661115250681152L; 33 34 public AccessDeniedException(String msg) 35 { 36 super(msg); 37 } 38 39 public AccessDeniedException(String msg, Throwable cause) 40 { 41 super(msg, cause); 42 } 43 44 } 45 | Popular Tags |