1 package org.omg.CORBA; 2 public final class TRANSACTION_UNAVAILABLE 3 extends org.omg.CORBA.SystemException 4 { 5 public TRANSACTION_UNAVAILABLE() 6 { 7 super( "", 0, org.omg.CORBA.CompletionStatus.COMPLETED_NO); 8 } 9 10 public TRANSACTION_UNAVAILABLE(String reason) 11 { 12 super( reason, 0, org.omg.CORBA.CompletionStatus.COMPLETED_NO); 13 } 14 15 public TRANSACTION_UNAVAILABLE(int minor, org.omg.CORBA.CompletionStatus completed) 16 { 17 super( "", minor, completed); 18 } 19 20 public TRANSACTION_UNAVAILABLE(String reason, int minor, org.omg.CORBA.CompletionStatus completed) 21 { 22 super( reason, minor, completed); 23 } 24 25 } 26 27 28 | Popular Tags |