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 8 package java.security.acl; 9 10 /** 11 * This is an exception that is thrown whenever the modification of an object 12 * (such as an Access Control List) is only allowed to be done by an owner of 13 * the object, but the Principal attempting the modification is not an owner. 14 * 15 * @author Satish Dharmaraj 16 */ 17 public class NotOwnerException extends Exception { 18 19 private static final long serialVersionUID = -5555597911163362399L; 20 21 /** 22 * Constructs a NotOwnerException. 23 */ 24 public NotOwnerException() { 25 } 26 } 27