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. package java.security.acl;
  8. /**
  9. * This is an exception that is thrown whenever a reference is made to a
  10. * non-existent ACL (Access Control List).
  11. *
  12. * @author Satish Dharmaraj
  13. */
  14. public class AclNotFoundException extends Exception {
  15. private static final long serialVersionUID = 5684295034092681791L;
  16. /**
  17. * Constructs an AclNotFoundException.
  18. */
  19. public AclNotFoundException() {
  20. }
  21. }