org.omg.CORBA
public final class BAD_OPERATION extends SystemException implements Serializable
Hex | Dec | Minor | Name | Case |
---|---|---|---|---|
47430000 | 1195573248 | 0 | Method | The remote side requested to invoke the method that is not available on that target (client and server probably disagree in the object definition). This code is set when the problem arises in the Classpath core; the idlj and rmic may generate the user code that sets 0x0 or other value. |
47430009 | 1195573257 | 9 | Any | Attempt to extract from the Any value of the different type that was stored into that Any. |
4743000a | 1195573258 | 10 | Activation | Failed to activate the inactive object due any reason. |
4743000b | 1195573259 | 11 | Policy | The policies, applying to ORB or POA prevent the requested operation. |
4743000c | 1195573260 | 12 | Socket | Socket related errors like failure to open socket on the expected port. |
4743000e | 1195573262 | 14 | Enumeration | The passed value for enumeration is outside the valid range for that enumeration. |
4743000f | 1195573263 | 15 | PolicyType | The passed policy code is outside the valid range of the possible policies for the given policy type. |
Constructor Summary | |
---|---|
BAD_OPERATION(String message)
Creates a BAD_OPERATION with the default minor code of 0, completion state
COMPLETED_NO and the given explaining message.
| |
BAD_OPERATION()
Creates BAD_OPERATION with the default minor code of 0 and a completion
state COMPLETED_NO. | |
BAD_OPERATION(int minor, CompletionStatus completed)
Creates a BAD_OPERATION exception with the specified minor code and
completion status.
| |
BAD_OPERATION(String reason, int minor, CompletionStatus completed)
Created BAD_OPERATION exception, providing full information.
|
Parameters: message the explaining message.
Parameters: minor additional error code. completed the method completion status.
Parameters: reason explaining message. minor additional error code (the "minor"). completed the method completion status.