1. /*
  2. * @(#)LastOwnerException.java 1.11 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 an attempt is made to delete
  13. * the last owner of an Access Control List.
  14. *
  15. * @see java.security.acl.Owner#deleteOwner
  16. *
  17. * @author Satish Dharmaraj
  18. */
  19. public class LastOwnerException extends Exception {
  20. /**
  21. * Constructs a LastOwnerException.
  22. */
  23. public LastOwnerException() {
  24. }
  25. }