org.omg.CORBA
Class BAD_OPERATION

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.omg.CORBA.SystemException
                  extended by org.omg.CORBA.BAD_OPERATION
All Implemented Interfaces:
Serializable

public final class BAD_OPERATION
extends SystemException
implements Serializable

Means that the object exists but does not support the operation that was invoked on it. In GNU Classpath, this exception may have the following Minor codes:

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.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class org.omg.CORBA.SystemException
completed, minor
 
Constructor Summary
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 message)
          Creates a BAD_OPERATION with the default minor code of 0, completion state COMPLETED_NO and the given explaining message.
BAD_OPERATION(String reason, int minor, CompletionStatus completed)
          Created BAD_OPERATION exception, providing full information.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BAD_OPERATION

public BAD_OPERATION(String message)
Creates a BAD_OPERATION with the default minor code of 0, completion state COMPLETED_NO and the given explaining message.

Parameters:
message - the explaining message.

BAD_OPERATION

public BAD_OPERATION()
Creates BAD_OPERATION with the default minor code of 0 and a completion state COMPLETED_NO.


BAD_OPERATION

public BAD_OPERATION(int minor,
                     CompletionStatus completed)
Creates a BAD_OPERATION exception with the specified minor code and completion status.

Parameters:
minor - additional error code.
completed - the method completion status.

BAD_OPERATION

public BAD_OPERATION(String reason,
                     int minor,
                     CompletionStatus completed)
Created BAD_OPERATION exception, providing full information.

Parameters:
reason - explaining message.
minor - additional error code (the "minor").
completed - the method completion status.