1 /* 2 * @(#)AclNotFoundException.java 1.13 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package java.security.acl; 9 10 /** 11 * This is an exception that is thrown whenever a reference is made to a 12 * non-existent ACL (Access Control List). 13 * 14 * @author Satish Dharmaraj 15 */ 16 public class AclNotFoundException extends Exception { 17 18 private static final long serialVersionUID = 5684295034092681791L; 19 20 /** 21 * Constructs an AclNotFoundException. 22 */ 23 public AclNotFoundException() { 24 } 25 26 } 27