01: /*
02: * Copyright 1995-2006 Sun Microsystems, Inc. All Rights Reserved.
03: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04: *
05: * This code is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU General Public License version 2 only, as
07: * published by the Free Software Foundation. Sun designates this
08: * particular file as subject to the "Classpath" exception as provided
09: * by Sun in the LICENSE file that accompanied this code.
10: *
11: * This code is distributed in the hope that it will be useful, but WITHOUT
12: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14: * version 2 for more details (a copy is included in the LICENSE file that
15: * accompanied this code).
16: *
17: * You should have received a copy of the GNU General Public License version
18: * 2 along with this work; if not, write to the Free Software Foundation,
19: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20: *
21: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22: * CA 95054 USA or visit www.sun.com if you need additional information or
23: * have any 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: * @version 1.17, 09/09/97
43: * @since JDK1.2
44: */
45:
46: public final class NO_IMPLEMENT extends SystemException {
47: /**
48: * Constructs a <code>NO_IMPLEMENT</code> exception with a default minor code
49: * of 0, a completion state of CompletionStatus.COMPLETED_NO,
50: * and a null description.
51: */
52: public NO_IMPLEMENT() {
53: this ("");
54: }
55:
56: /**
57: * Constructs a <code>NO_IMPLEMENT</code> exception with the specified description message,
58: * a minor code of 0, and a completion state of COMPLETED_NO.
59: * @param s the String containing a description of the exception
60: */
61: public NO_IMPLEMENT(String s) {
62: this (s, 0, CompletionStatus.COMPLETED_NO);
63: }
64:
65: /**
66: * Constructs a <code>NO_IMPLEMENT</code> exception with the specified
67: * minor code and completion status.
68: * @param minor an <code>int</code> specifying the minor code
69: * @param completed a <code>CompletionStatus</code> instance indicating
70: * the completion status
71: */
72: public NO_IMPLEMENT(int minor, CompletionStatus completed) {
73: this ("", minor, completed);
74: }
75:
76: /**
77: * Constructs a <code>NO_IMPLEMENT</code> exception with the specified description
78: * message, minor code, and completion status.
79: * @param s the String containing a description message
80: * @param minor an <code>int</code> specifying the minor code
81: * @param completed a <code>CompletionStatus</code> instance indicating
82: * the completion status
83: */
84: public NO_IMPLEMENT(String s, int minor, CompletionStatus completed) {
85: super(s, minor, completed);
86: }
87: }
|