01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.CORBA;
05:
06: public class TRANSACTION_ROLLEDBACK extends
07: org.omg.CORBA.SystemException {
08:
09: public TRANSACTION_ROLLEDBACK() {
10: super (null, 0, CompletionStatus.COMPLETED_NO);
11: }
12:
13: public TRANSACTION_ROLLEDBACK(int minor, CompletionStatus completed) {
14: super (null, minor, completed);
15: }
16:
17: public TRANSACTION_ROLLEDBACK(String reason) {
18: super (reason, 0, CompletionStatus.COMPLETED_NO);
19: }
20:
21: public TRANSACTION_ROLLEDBACK(String reason, int minor,
22: CompletionStatus completed) {
23: super(reason, minor, completed);
24: }
25:
26: }
|