01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: public class OBJ_ADAPTER extends org.omg.CORBA.SystemException {
07:
08: public OBJ_ADAPTER() {
09: super (null, 0, CompletionStatus.COMPLETED_NO);
10: }
11:
12: public OBJ_ADAPTER(int minor, CompletionStatus completed) {
13: super (null, minor, completed);
14: }
15:
16: public OBJ_ADAPTER(String reason) {
17: super (reason, 0, CompletionStatus.COMPLETED_NO);
18: }
19:
20: public OBJ_ADAPTER(String reason, int minor,
21: CompletionStatus completed) {
22: super(reason, minor, completed);
23: }
24:
25: }
|