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 INITIALIZE extends org.omg.CORBA.SystemException {
07:
08: public INITIALIZE() {
09: super (null, 0, CompletionStatus.COMPLETED_NO);
10: }
11:
12: public INITIALIZE(int minor, CompletionStatus completed) {
13: super (null, minor, completed);
14: }
15:
16: public INITIALIZE(String reason) {
17: super (reason, 0, CompletionStatus.COMPLETED_NO);
18: }
19:
20: public INITIALIZE(String reason, int minor,
21: CompletionStatus completed) {
22: super(reason, minor, completed);
23: }
24:
25: }
|