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