1. /*
  2. * @(#)NotOwnerException.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 the modification of an object
  13. * (such as an Access Control List) is only allowed to be done by an owner of
  14. * the object, but the Principal attempting the modification is not an owner.
  15. *
  16. * @author Satish Dharmaraj
  17. */
  18. public class NotOwnerException extends Exception {
  19. /**
  20. * Constructs a NotOwnerException.
  21. */
  22. public NotOwnerException() {
  23. }
  24. }