summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/usrgrp/IUGSubsystem.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/usrgrp/IUGSubsystem.java')
-rw-r--r--base/common/src/com/netscape/certsrv/usrgrp/IUGSubsystem.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/base/common/src/com/netscape/certsrv/usrgrp/IUGSubsystem.java b/base/common/src/com/netscape/certsrv/usrgrp/IUGSubsystem.java
index c101187c4..bbd051324 100644
--- a/base/common/src/com/netscape/certsrv/usrgrp/IUGSubsystem.java
+++ b/base/common/src/com/netscape/certsrv/usrgrp/IUGSubsystem.java
@@ -120,16 +120,18 @@ public interface IUGSubsystem extends ISubsystem, IUsrGrp {
*
* @param filter the search filter
* @return a list of groups that match the given search filter
+ * @throws EUsrGrpException
*/
- public Enumeration<IGroup> findGroups(String filter);
+ public Enumeration<IGroup> findGroups(String filter) throws EUsrGrpException;
/**
* Find a group for the given name
*
* @param name the given name
* @return a group that matched the given name
+ * @throws EUsrGrpException
*/
- public IGroup findGroup(String name);
+ public IGroup findGroup(String name) throws EUsrGrpException;
/**
* List groups. This method is more efficient than findGroups because