1 7 8 package org.omg.CORBA; 9 10 22 23 public final class TRANSACTION_REQUIRED extends SystemException { 24 29 public TRANSACTION_REQUIRED() { 30 this(""); 31 } 32 33 38 public TRANSACTION_REQUIRED(String s) { 39 this(s, 0, CompletionStatus.COMPLETED_NO); 40 } 41 42 48 public TRANSACTION_REQUIRED(int minor, CompletionStatus completed) { 49 this("", minor, completed); 50 } 51 52 59 public TRANSACTION_REQUIRED(String s, int minor, CompletionStatus completed) { 60 super(s, minor, completed); 61 } 62 } 63 | Popular Tags |