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