CODESET_INCOMPATIBLE.java revision 608:7e06bf1dcb09
1/*
2 * Copyright (c) 2004, 2006, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26package org.omg.CORBA;
27
28/**
29 * This exception is raised whenever meaningful communication is not possible
30 * between client and server native code sets.
31 *
32 * @see <A href="../../../../technotes/guides/idl/jidlExceptions.html">documentation on
33 *      Java&nbsp;IDL exceptions</A>
34 * @since   J2SE 1.5
35 */
36
37public final class CODESET_INCOMPATIBLE extends SystemException {
38
39    /**
40     * Constructs an <code>CODESET_INCOMPATIBLE</code> exception with
41     * minor code set to 0 and CompletionStatus set to COMPLETED_NO.
42     */
43    public CODESET_INCOMPATIBLE() {
44        this("");
45    }
46
47    /**
48     * Constructs an <code>CODESET_INCOMPATIBLE</code> exception with the
49     * specified message.
50     *
51     * @param detailMessage string containing a detailed message.
52     */
53    public CODESET_INCOMPATIBLE(String detailMessage) {
54        this(detailMessage, 0, CompletionStatus.COMPLETED_NO);
55    }
56
57    /**
58     * Constructs an <code>CODESET_INCOMPATIBLE</code> exception with the
59     * specified minor code and completion status.
60     *
61     * @param minorCode minor code.
62     * @param completionStatus completion status.
63     */
64    public CODESET_INCOMPATIBLE(int minorCode,
65                                CompletionStatus completionStatus) {
66        this("", minorCode, completionStatus);
67    }
68
69    /**
70     * Constructs an <code>CODESET_INCOMPATIBLE</code> exception with the
71     * specified message, minor code, and completion status.
72     *
73     * @param detailMessage string containing a detailed message.
74     * @param minorCode minor code.
75     * @param completionStatus completion status.
76     */
77    public CODESET_INCOMPATIBLE(String detailMessage,
78                                int minorCode,
79                                CompletionStatus completionStatus) {
80        super(detailMessage, minorCode, completionStatus);
81    }
82}
83