1 17 package org.alfresco.repo.security.permissions.impl.acegi; 18 19 import org.alfresco.error.AlfrescoRuntimeException; 20 21 public class ACLEntryVoterException extends AlfrescoRuntimeException 22 { 23 24 27 private static final long serialVersionUID = -674195849623480512L; 28 29 public ACLEntryVoterException(String msg) 30 { 31 super(msg); 32 } 33 34 public ACLEntryVoterException(String msg, Throwable cause) 35 { 36 super(msg, cause); 37 } 38 39 } 40 | Popular Tags |