1. /*
  2. * @(#)LastOwnerException.java 1.15 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 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. private static final long serialVersionUID = -5141997548211140359L;
  18. /**
  19. * Constructs a LastOwnerException.
  20. */
  21. public LastOwnerException() {
  22. }
  23. }