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