Class NoUserRepositoriesFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.wsspi.security.wim.exception.WIMException
-
- com.ibm.wsspi.security.wim.exception.WIMApplicationException
-
- com.ibm.wsspi.security.wim.exception.NoUserRepositoriesFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class NoUserRepositoriesFoundException extends WIMApplicationException
Exception received when a request to do a user registry or repository is made and there are no user registries or repositories configured.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoUserRepositoriesFoundException()
Constructs a NoUserRepositoriesFoundException with no message key, no detail message, and no cause.NoUserRepositoriesFoundException(java.lang.String key, java.lang.String message)
Constructs a NoUserRepositoriesFoundException with the specified message key and detail message.NoUserRepositoriesFoundException(java.lang.String key, java.lang.String message, java.lang.Throwable cause)
Constructs a NoUserRepositoriesFoundException with the specified message key, detail message, and cause.NoUserRepositoriesFoundException(java.lang.Throwable cause)
Constructs a NoUserRepositoriesFoundException with the specified cause.
-
Method Summary
-
Methods inherited from class com.ibm.wsspi.security.wim.exception.WIMException
getMessageKey
-
-
-
-
Constructor Detail
-
NoUserRepositoriesFoundException
public NoUserRepositoriesFoundException()
Constructs a NoUserRepositoriesFoundException with no message key, no detail message, and no cause.
-
NoUserRepositoriesFoundException
public NoUserRepositoriesFoundException(java.lang.String key, java.lang.String message)
Constructs a NoUserRepositoriesFoundException with the specified message key and detail message.- Parameters:
key
- The message key.message
- The detail message.
-
NoUserRepositoriesFoundException
public NoUserRepositoriesFoundException(java.lang.String key, java.lang.String message, java.lang.Throwable cause)
Constructs a NoUserRepositoriesFoundException with the specified message key, detail message, and cause.- Parameters:
key
- The message key.message
- The detail message.cause
- The cause.
-
NoUserRepositoriesFoundException
public NoUserRepositoriesFoundException(java.lang.Throwable cause)
Constructs a NoUserRepositoriesFoundException with the specified cause.- Parameters:
cause
- The cause.
-
-