01: package org.omg.CORBA;
02:
03: public final class CODESET_INCOMPATIBLE extends
04: org.omg.CORBA.SystemException {
05: public CODESET_INCOMPATIBLE() {
06: super ("", 0, org.omg.CORBA.CompletionStatus.COMPLETED_NO);
07: }
08:
09: public CODESET_INCOMPATIBLE(String reason) {
10: super (reason, 0, org.omg.CORBA.CompletionStatus.COMPLETED_NO);
11: }
12:
13: public CODESET_INCOMPATIBLE(int minor,
14: org.omg.CORBA.CompletionStatus completed) {
15: super ("", minor, completed);
16: }
17:
18: public CODESET_INCOMPATIBLE(String reason, int minor,
19: org.omg.CORBA.CompletionStatus completed) {
20: super(reason, minor, completed);
21: }
22:
23: }
|