1 /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 2 duplicate and use this code are hereby granted provided that this 3 copyright notice is included. 4 *****/ 5 6 package org.omg.CORBA; 7 8 public class INTERNAL extends org.omg.CORBA.SystemException { 9 10 public INTERNAL() { 11 super(null, 0, CompletionStatus.COMPLETED_MAYBE); 12 } 13 14 public INTERNAL(int minor, CompletionStatus completed) { 15 super(null, minor, completed); 16 } 17 18 public INTERNAL(String reason) { 19 super(reason, 0, CompletionStatus.COMPLETED_MAYBE); 20 } 21 22 public INTERNAL(String reason, int minor, CompletionStatus completed) { 23 super(reason, minor, completed); 24 } 25 26 }