org.acplt.oncrpc
Class OncRpcAuthenticationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.acplt.oncrpc.OncRpcException
                    |
                    +--org.acplt.oncrpc.OncRpcAuthenticationException

public class OncRpcAuthenticationException
extends OncRpcException

The class OncRpcAuthenticationException indicates an authentication exception.

See Also:
Serialized Form

Field Summary
private  int authStatusDetail
          Specific authentication status detail (reason why this authentication exception was thrown).
 
Fields inherited from class org.acplt.oncrpc.OncRpcException
message, reason, RPC_AUTHERROR, RPC_BUFFEROVERFLOW, RPC_BUFFERUNDERFLOW, RPC_CANTDECODEARGS, RPC_CANTDECODERES, RPC_CANTENCODEARGS, RPC_CANTRECV, RPC_CANTSEND, RPC_FAILED, RPC_PMAPFAILURE, RPC_PROCUNAVAIL, RPC_PROGNOTREGISTERED, RPC_PROGUNAVAIL, RPC_PROGVERSMISMATCH, RPC_SUCCESS, RPC_SYSTEMERROR, RPC_TIMEDOUT, RPC_UNKNOWNPROTO, RPC_VERSMISMATCH, RPC_WRONGMESSAGE
 
Fields inherited from class java.lang.Throwable
backtrace, detailMessage, serialVersionUID
 
Constructor Summary
OncRpcAuthenticationException(int authStatus)
          Initializes an OncRpcAuthenticationException with a detail of OncRpcException.RPC_AUTHERROR and the specified authentication status detail.
 
Method Summary
 int getAuthStatus()
          Returns the authentication status detail of this ONC/RPC exception object.
 
Methods inherited from class org.acplt.oncrpc.OncRpcException
getMessage, getReason
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, printStackTrace, printStackTrace, printStackTrace, printStackTrace0, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

authStatusDetail

private int authStatusDetail
Specific authentication status detail (reason why this authentication exception was thrown).
Constructor Detail

OncRpcAuthenticationException

public OncRpcAuthenticationException(int authStatus)
Initializes an OncRpcAuthenticationException with a detail of OncRpcException.RPC_AUTHERROR and the specified authentication status detail.
Parameters:
authStatus - The authentication status, which can be any one of the OncRpcAuthStatus constants.
Method Detail

getAuthStatus

public int getAuthStatus()
Returns the authentication status detail of this ONC/RPC exception object.
Returns:
The authentication status of this OncRpcException.