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.Exception
Base class representing a virtual member manager exception. This can be extended to create component specific exceptions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors 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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessageKey()
Return the message key.
-
-
-
Constructor Detail
-
WIMException
public WIMException()
Default Constructor
-
WIMException
public WIMException(java.lang.String key, java.lang.String message)
Creates the WIMException.- Parameters:
message
- The message or message key of the exception.
-
WIMException
public WIMException(java.lang.String message)
-
WIMException
public WIMException(java.lang.Throwable cause)
Creates the WIMException.- Parameters:
cause
- The cause of the exception.
-
WIMException
public 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.
-
-