- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.omg.CORBA.SystemException
-
- org.omg.CORBA.CODESET_INCOMPATIBLE
-
- All Implemented Interfaces:
-
Serializable
public final class CODESET_INCOMPATIBLE extends SystemException
无论客户端和服务器本机代码集之间无法进行有意义的通信,都会引发此异常。- 从以下版本开始:
- J2SE 1.5
-
-
Field Summary
-
Fields inherited from class org.omg.CORBA.SystemException
completed, minor
-
-
构造方法摘要
构造方法 Constructor 描述 CODESET_INCOMPATIBLE()
构造一个CODESET_INCOMPATIBLE
异常,次要代码设置为0,CompletionStatus设置为COMPLETED_NO。CODESET_INCOMPATIBLE(int minorCode, CompletionStatus completionStatus)
构造具有指定的次要代码和完成状态的CODESET_INCOMPATIBLE
异常。CODESET_INCOMPATIBLE(String detailMessage)
使用指定的消息构造一个CODESET_INCOMPATIBLE
异常。CODESET_INCOMPATIBLE(String detailMessage, int minorCode, CompletionStatus completionStatus)
构造具有指定消息,次要代码和完成状态的CODESET_INCOMPATIBLE
异常。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class org.omg.CORBA.SystemException
toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
构造方法详细信息
-
CODESET_INCOMPATIBLE
public CODESET_INCOMPATIBLE()
构造一个CODESET_INCOMPATIBLE
异常,次要代码设置为0,CompletionStatus设置为COMPLETED_NO。
-
CODESET_INCOMPATIBLE
public CODESET_INCOMPATIBLE(String detailMessage)
使用指定的消息构造一个CODESET_INCOMPATIBLE
异常。- 参数
-
detailMessage
- 包含详细消息的字符串。
-
CODESET_INCOMPATIBLE
public CODESET_INCOMPATIBLE(int minorCode, CompletionStatus completionStatus)
构造具有指定的次要代码和完成状态的CODESET_INCOMPATIBLE
异常。- 参数
-
minorCode
- 次要代码。 -
completionStatus
- 完成状态。
-
CODESET_INCOMPATIBLE
public CODESET_INCOMPATIBLE(String detailMessage, int minorCode, CompletionStatus completionStatus)
构造具有指定消息,次要代码和完成状态的CODESET_INCOMPATIBLE
异常。- 参数
-
detailMessage
- 包含详细消息的字符串。 -
minorCode
- 次要代码。 -
completionStatus
- 完成状态。
-
-