org.omg.CORBA
Class NO_IMPLEMENT

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.omg.CORBA.SystemException
                          |
                          +--org.omg.CORBA.NO_IMPLEMENT
All Implemented Interfaces:
java.io.Serializable

public class NO_IMPLEMENT
extends SystemException

This exception indicates that even though the operation that was invoked exists (it has an IDL definition), no implementation for that operation exists. NO_IMPLEMENT can, for example, be raised by an ORB if a client asks for an object?s type definition from the interface repository, but no interface repository is provided by the ORB.

See Also:
Serialized Form

Fields inherited from class org.omg.CORBA.SystemException
completed, minor
 
Constructor Summary
NO_IMPLEMENT()
          Default constructor
NO_IMPLEMENT(int minor, CompletionStatus completed)
          Constructor with fields initialization
NO_IMPLEMENT(java.lang.String orb_reason)
          Constructor with reason string
NO_IMPLEMENT(java.lang.String orb_reason, int minor, CompletionStatus completed)
          Full constructor with fields initialization
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NO_IMPLEMENT

public NO_IMPLEMENT()
Default constructor

NO_IMPLEMENT

public NO_IMPLEMENT(java.lang.String orb_reason)
Constructor with reason string

NO_IMPLEMENT

public NO_IMPLEMENT(int minor,
                    CompletionStatus completed)
Constructor with fields initialization
Parameters:
minor - minor exception member
completed - completed exception member

NO_IMPLEMENT

public NO_IMPLEMENT(java.lang.String orb_reason,
                    int minor,
                    CompletionStatus completed)
Full constructor with fields initialization
Parameters:
minor - minor exception member
completed - completed exception member