Package com.sun.rpc
Class MsgRejectedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- com.sun.rpc.RpcException
-
- com.sun.rpc.MsgRejectedException
-
- All Implemented Interfaces:
java.io.Serializable
public class MsgRejectedException extends RpcException
Handle the RPC "message rejected" class of errors. Note that some of the errors also convey low and high version information or an authentication sub-error.- Author:
- Brent Callaghan
- See Also:
RpcException
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
AUTH_BADCRED
static int
AUTH_BADVERF
static int
AUTH_ERROR
static int
AUTH_FAILED
static int
AUTH_INVALIDRESP
static int
AUTH_REJECTEDCRED
static int
AUTH_REJECTEDVERF
static int
AUTH_TOOWEAK
static int
RPC_MISMATCH
static int
RPCSEC_GSS_FAILED
static int
RPCSEC_GSS_NOCRED
-
Fields inherited from class com.sun.rpc.RpcException
error, hi, lo, why
-
-
Constructor Summary
Constructors Constructor Description MsgRejectedException(int error)
MsgRejectedException(int error, int why)
MsgRejectedException(int error, int lo, int hi)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
RPC_MISMATCH
public static final int RPC_MISMATCH
- See Also:
- Constant Field Values
-
AUTH_ERROR
public static final int AUTH_ERROR
- See Also:
- Constant Field Values
-
AUTH_BADCRED
public static final int AUTH_BADCRED
- See Also:
- Constant Field Values
-
AUTH_REJECTEDCRED
public static final int AUTH_REJECTEDCRED
- See Also:
- Constant Field Values
-
AUTH_BADVERF
public static final int AUTH_BADVERF
- See Also:
- Constant Field Values
-
AUTH_REJECTEDVERF
public static final int AUTH_REJECTEDVERF
- See Also:
- Constant Field Values
-
AUTH_TOOWEAK
public static final int AUTH_TOOWEAK
- See Also:
- Constant Field Values
-
AUTH_INVALIDRESP
public static final int AUTH_INVALIDRESP
- See Also:
- Constant Field Values
-
AUTH_FAILED
public static final int AUTH_FAILED
- See Also:
- Constant Field Values
-
RPCSEC_GSS_NOCRED
public static final int RPCSEC_GSS_NOCRED
- See Also:
- Constant Field Values
-
RPCSEC_GSS_FAILED
public static final int RPCSEC_GSS_FAILED
- See Also:
- Constant Field Values
-
-