1 13 14 package org.jahia.services.acl; 15 16 import org.jahia.exceptions.JahiaException; 17 18 25 public class ACLNotFoundException extends JahiaException { 26 27 private int mAclID = -1; 28 29 30 35 public ACLNotFoundException (int aclID) { 36 super ("Access Control List not found.", 37 "ACL [" + aclID + "] could not be found.", ACL_ERROR, ERROR_SEVERITY); 38 39 mAclID = aclID; 40 } 41 42 43 51 public int getAclID () { 52 return mAclID; 53 } 54 } 55 | Popular Tags |