Package org.openiam.exception
Class AuthenticationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.openiam.exception.AuthenticationException
-
- All Implemented Interfaces:
Serializable
@Deprecated @WebFault(name="AuthenticationException") public class AuthenticationException extends Exception
Deprecated.- use BasicDataServiceException AuthenticationException is thrown when ever there is an error in the authentication process. Check the errorCode and errorMessage properties to determine the cause of the exception.- Version:
- 1
- Author:
- Suneet Shah
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AuthenticationException()Deprecated.AuthenticationException(int errCd)Deprecated.AuthenticationException(int errCode, String errorMessage, Object exception)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description intgetErrorCode()Deprecated.StringgetErrorMessage()Deprecated.ObjectgetException()Deprecated.voidsetErrorCode(int errorCode)Deprecated.voidsetErrorMessage(String errorMessage)Deprecated.voidsetException(Object exception)Deprecated.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getErrorCode
public int getErrorCode()
Deprecated.
-
getErrorMessage
public String getErrorMessage()
Deprecated.
-
setErrorMessage
public void setErrorMessage(String errorMessage)
Deprecated.
-
getException
public Object getException()
Deprecated.
-
setException
public void setException(Object exception)
Deprecated.
-
setErrorCode
public void setErrorCode(int errorCode)
Deprecated.
-
-