1 7 8 package org.omg.CORBA; 9 10 25 26 public final class TRANSACTION_ROLLEDBACK extends SystemException { 27 32 public TRANSACTION_ROLLEDBACK() { 33 this(""); 34 } 35 36 42 public TRANSACTION_ROLLEDBACK(String s) { 43 this(s, 0, CompletionStatus.COMPLETED_NO); 44 } 45 46 52 public TRANSACTION_ROLLEDBACK(int minor, CompletionStatus completed) { 53 this("", minor, completed); 54 } 55 56 63 public TRANSACTION_ROLLEDBACK(String s, int minor, CompletionStatus completed) { 64 super(s, minor, completed); 65 } 66 } 67 | Popular Tags |