Package com.saperion.ws.pool.exceptions
Class AuthenticationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.saperion.ws.pool.exceptions.AuthenticationException
-
- All Implemented Interfaces:
java.io.Serializable
public class AuthenticationException extends java.lang.Exception
This Exception will be thrown, if the pool factory has problems to create a SaClassicConnector instance and can't log in.- Author:
- Daniel Manzke
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuthenticationException()
Default constructor.AuthenticationException(java.lang.String message)
Constructor.AuthenticationException(java.lang.String message, java.lang.Throwable cause)
Constructor.AuthenticationException(java.lang.Throwable cause)
Constructor.
-
-
-
Constructor Detail
-
AuthenticationException
public AuthenticationException()
Default constructor.
-
AuthenticationException
public AuthenticationException(java.lang.String message)
Constructor.- Parameters:
message
- The exception message.
-
AuthenticationException
public AuthenticationException(java.lang.Throwable cause)
Constructor.- Parameters:
cause
- The exception cause.
-
AuthenticationException
public AuthenticationException(java.lang.String message, java.lang.Throwable cause)
Constructor.- Parameters:
message
- The exception message.cause
- The exception cause.
-
-