Package org.apache.sling.api.resource
Class LoginException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.sling.api.resource.LoginException
-
- All Implemented Interfaces:
java.io.Serializable
public class LoginException extends java.lang.Exception
Exception thrown by
,ResourceResolverFactory.getAdministrativeResourceResolver(java.util.Map)
, andResourceResolverFactory.getResourceResolver(java.util.Map)
if a resource resolver cannot be created because the credential data is not valid.ResourceResolver.clone(java.util.Map)
- Since:
- 2.1 (Sling API Bundle 2.1.0)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LoginException()
Constructs a new instance of this class withnull
as its detail message.LoginException(java.lang.String message)
Constructs a new instance of this class with the specified detail message.LoginException(java.lang.String message, java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified detail message and root cause.LoginException(java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified root cause.
-
-
-
Constructor Detail
-
LoginException
public LoginException()
Constructs a new instance of this class withnull
as its detail message.
-
LoginException
public LoginException(java.lang.String message)
Constructs a new instance of this class with the specified detail message.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.
-
LoginException
public LoginException(java.lang.String message, java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified detail message and root cause.- Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.rootCause
- root failure cause
-
LoginException
public LoginException(java.lang.Throwable rootCause)
Constructs a new instance of this class with the specified root cause.- Parameters:
rootCause
- root failure cause
-
-