com.filenet.bso.api.collaboration.exceptions
Class UserException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.filenet.bso.api.util.BsoChainingException
|
+--com.filenet.bso.api.util.BsoException
|
+--com.filenet.bso.api.collaboration.exceptions.ValidationException
|
+--com.filenet.bso.api.collaboration.exceptions.UserException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- DuplicateMemberException, DuplicateParticipantException, NonExistentMemberException, NonExistentParticipantException, NonTeamspaceMemberException, NonTeamspaceObjectException, UserNotFoundException
- public class UserException
- extends ValidationException
Checked exception thrown when a user attempts an operation that references an invalid or non-existent user or member.
Applications should catch this exception and inform the user of the problem.
- See Also:
- Serialized Form
Constructor Summary |
UserException()
Constructs a NonExistentMemberException with no specific
detail message. |
UserException(java.lang.String msg)
Constructs a NonExistentMemberException with a given
detail message. |
UserException(java.lang.String msg,
java.lang.Throwable cause)
Constructs a NonExistentMemberException with a given
detail message and the original exception. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, getMessage, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
UserException
public UserException()
- Constructs a
NonExistentMemberException
with no specific
detail message. This exception and exceptions derived from it are
checked exceptions which must be caught or specified
in a throws
clause.
UserException
public UserException(java.lang.String msg)
- Constructs a
NonExistentMemberException
with a given
detail message.
- Parameters:
msg
- The detail message.
UserException
public UserException(java.lang.String msg,
java.lang.Throwable cause)
- Constructs a
NonExistentMemberException
with a given
detail message and the original exception.
- Parameters:
msg
- The detail message.cause
- The original exception. Null
for this
parameter is the same as no original exception.
Copyright © 2002 - 2004 FileNet Corporation. All rights reserved.