1. /*
  2. * @(#)AclNotFoundException.java 1.9 00/02/02
  3. *
  4. * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
  5. *
  6. * This software is the proprietary information of Sun Microsystems, Inc.
  7. * Use is subject to license terms.
  8. *
  9. */
  10. package java.security.acl;
  11. /**
  12. * This is an exception that is thrown whenever a reference is made to a
  13. * non-existent ACL (Access Control List).
  14. *
  15. * @author Satish Dharmaraj
  16. */
  17. public class AclNotFoundException extends Exception {
  18. /**
  19. * Constructs an AclNotFoundException.
  20. */
  21. public AclNotFoundException() {
  22. }
  23. }