src/share/classes/org/omg/CORBA/NO_IMPLEMENT.java

Print this page
rev 597 : 8047722: @since tag cleanup in corba
Reviewed-by:


  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package org.omg.CORBA;
  27 
  28 /**
  29  * This exception indicates that even though the operation that
  30  * was invoked exists (it has an IDL definition), no implementation
  31  * for that operation exists. <tt>NO_IMPLEMENT</tt> can, for
  32  * example, be raised by an ORB if a client asks for an object's
  33  * type definition from the interface repository, but no interface
  34  * repository is provided by the ORB.<P>
  35  * It contains a minor code, which gives more detailed information about
  36  * what caused the exception, and a completion status. It may also contain
  37  * a string describing the exception.
  38  * <P>
  39  * See the section <A href="../../../../technotes/guides/idl/jidlExceptions.html#minorcodemeanings">Minor
  40  * Code Meanings</A> to see the minor codes for this exception.
  41  *
  42  * @since       JDK1.2
  43  */
  44 
  45 public final class NO_IMPLEMENT extends SystemException {
  46     /**
  47      * Constructs a <code>NO_IMPLEMENT</code> exception with a default minor code
  48      * of 0, a completion state of CompletionStatus.COMPLETED_NO,
  49      * and a null description.
  50      */
  51     public NO_IMPLEMENT() {
  52         this("");
  53     }
  54 
  55     /**
  56      * Constructs a <code>NO_IMPLEMENT</code> exception with the specified description message,
  57      * a minor code of 0, and a completion state of COMPLETED_NO.
  58      * @param s the String containing a description of the exception
  59      */
  60     public NO_IMPLEMENT(String s) {
  61         this(s, 0, CompletionStatus.COMPLETED_NO);
  62     }




  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package org.omg.CORBA;
  27 
  28 /**
  29  * This exception indicates that even though the operation that
  30  * was invoked exists (it has an IDL definition), no implementation
  31  * for that operation exists. <tt>NO_IMPLEMENT</tt> can, for
  32  * example, be raised by an ORB if a client asks for an object's
  33  * type definition from the interface repository, but no interface
  34  * repository is provided by the ORB.<P>
  35  * It contains a minor code, which gives more detailed information about
  36  * what caused the exception, and a completion status. It may also contain
  37  * a string describing the exception.
  38  * <P>
  39  * See the section <A href="../../../../technotes/guides/idl/jidlExceptions.html#minorcodemeanings">Minor
  40  * Code Meanings</A> to see the minor codes for this exception.
  41  *
  42  * @since       1.2
  43  */
  44 
  45 public final class NO_IMPLEMENT extends SystemException {
  46     /**
  47      * Constructs a <code>NO_IMPLEMENT</code> exception with a default minor code
  48      * of 0, a completion state of CompletionStatus.COMPLETED_NO,
  49      * and a null description.
  50      */
  51     public NO_IMPLEMENT() {
  52         this("");
  53     }
  54 
  55     /**
  56      * Constructs a <code>NO_IMPLEMENT</code> exception with the specified description message,
  57      * a minor code of 0, and a completion state of COMPLETED_NO.
  58      * @param s the String containing a description of the exception
  59      */
  60     public NO_IMPLEMENT(String s) {
  61         this(s, 0, CompletionStatus.COMPLETED_NO);
  62     }