Class WIMException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- com.ibm.wsspi.security.wim.exception.WIMException
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 - Direct Known Subclasses:
- WIMApplicationException,- WIMSystemException
 
 public class WIMException extends java.lang.ExceptionBase class representing a virtual member manager exception. This can be extended to create component specific exceptions.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description WIMException()Default ConstructorWIMException(java.lang.String message)WIMException(java.lang.String key, java.lang.String message)Creates the WIMException.WIMException(java.lang.String key, java.lang.String message, java.lang.Throwable cause)Creates the WIMException.WIMException(java.lang.Throwable cause)Creates the WIMException.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetMessageKey()Return the message key.
 
- 
- 
- 
Constructor Detail- 
WIMExceptionpublic WIMException() Default Constructor
 - 
WIMExceptionpublic WIMException(java.lang.String key, java.lang.String message)Creates the WIMException.- Parameters:
- message- The message or message key of the exception.
 
 - 
WIMExceptionpublic WIMException(java.lang.String message) 
 - 
WIMExceptionpublic WIMException(java.lang.Throwable cause) Creates the WIMException.- Parameters:
- cause- The cause of the exception.
 
 - 
WIMExceptionpublic WIMException(java.lang.String key, java.lang.String message, java.lang.Throwable cause)Creates the WIMException.- Parameters:
- message- The error message.
- cause- The cause of the exception.
 
 
- 
 
-