FileDocCategorySizeDatePackage
CODESET_INCOMPATIBLE.javaAPI DocJava SE 5 API2060Fri Aug 26 14:58:26 BST 2005org.omg.CORBA

CODESET_INCOMPATIBLE

public final class CODESET_INCOMPATIBLE extends SystemException
This exception is raised whenever meaningful communication is not possible between client and server native code sets.
see
documentation on Java IDL exceptions
version
1.0, 03/05/2004
since
J2SE 1.5

Fields Summary
Constructors Summary
public CODESET_INCOMPATIBLE()
Constructs an CODESET_INCOMPATIBLE exception with minor code set to 0 and CompletionStatus set to COMPLETED_NO.

	this("");
    
public CODESET_INCOMPATIBLE(String detailMessage)
Constructs an CODESET_INCOMPATIBLE exception with the specified message.

param
detailMessage string containing a detailed message.

        this(detailMessage, 0, CompletionStatus.COMPLETED_NO);
    
public CODESET_INCOMPATIBLE(int minorCode, CompletionStatus completionStatus)
Constructs an CODESET_INCOMPATIBLE exception with the specified minor code and completion status.

param
minorCode minor code.
param
completionStatus completion status.

        this("", minorCode, completionStatus);
    
public CODESET_INCOMPATIBLE(String detailMessage, int minorCode, CompletionStatus completionStatus)
Constructs an CODESET_INCOMPATIBLE exception with the specified message, minor code, and completion status.

param
detailMessage string containing a detailed message.
param
minorCode minor code.
param
completionStatus completion status.

        super(detailMessage, minorCode, completionStatus);
    
Methods Summary