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 8 package java.security.acl; 9 10 /** 11 * This is an exception that is thrown whenever an attempt is made to delete 12 * the last owner of an Access Control List. 13 * 14 * @see java.security.acl.Owner#deleteOwner 15 * 16 * @author Satish Dharmaraj 17 */ 18 public class LastOwnerException extends Exception { 19 20 private static final long serialVersionUID = -5141997548211140359L; 21 22 /** 23 * Constructs a LastOwnerException. 24 */ 25 public LastOwnerException() { 26 } 27 } 28