1. /*
  2. * @(#)AclNotFoundException.java 1.8 01/11/29
  3. *
  4. * Copyright 2002 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. /**
  16. * Constructs an AclNotFoundException.
  17. */
  18. public AclNotFoundException() {
  19. }
  20. }