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