diff options
Diffstat (limited to 'libjava/classpath/java/security/acl/Owner.java')
-rw-r--r-- | libjava/classpath/java/security/acl/Owner.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/classpath/java/security/acl/Owner.java b/libjava/classpath/java/security/acl/Owner.java index df1605b2e4f..c671cd362a6 100644 --- a/libjava/classpath/java/security/acl/Owner.java +++ b/libjava/classpath/java/security/acl/Owner.java @@ -64,7 +64,7 @@ public interface Owner * * @exception NotOwnerException If the caller is not already an owner of this ACL */ - boolean addOwner(Principal caller, Principal owner) + boolean addOwner(Principal caller, Principal owner) throws NotOwnerException; /** @@ -82,7 +82,7 @@ public interface Owner * @exception NotOwnerException If the caller is not already an owner of this ACL * @exception LastOwnerException If completing the operation would delete the last ACL owner */ - boolean deleteOwner(Principal caller, Principal owner) + boolean deleteOwner(Principal caller, Principal owner) throws NotOwnerException, LastOwnerException; /** |