| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.jasig.portal.PortalException org.jasig.portal.groups.GroupsException
GroupsException | public class GroupsException extends org.jasig.portal.PortalException (Code) | | A GroupsException describes a problem in the groups structure or in
the groups store. An example of a structural problem is an attempt
to create a circular reference. If the problem arises retrieving or
updating the groups store, the GroupsException should wrap an Exception
specific to the store, probably a java.sql.SQLException or a
javax.naming.NamingException.
author: Dan Ellentuck version: $Revision: 35418 $ $Date: 2005-03-07 13:09:07 -0700 (Mon, 07 Mar 2005) $ |
GroupsException | public GroupsException()(Code) | | Instantiate a bare GroupsException.
Deprecated because it would be so much more helpful to use a contructor
that includes a descriptive message.
|
GroupsException | public GroupsException(Throwable cause)(Code) | | Instantiate a GroupsException with the given cause.
Parameters: cause - Throwable that caused the problem |
GroupsException | public GroupsException(String msg)(Code) | | Instantiate a GroupsException with the given message.
Parameters: msg - message describing problem |
GroupsException | public GroupsException(String msg, Throwable cause)(Code) | | Instantiate a GroupsException with the given message and underlying cause.
Parameters: msg - message describing problem Parameters: cause - underlying cause |
getExceptionCode | public int getExceptionCode()(Code) | | Always returns zero.
0 |
|
|
|