001    /***** Copyright (c) 1999 Object Management Group. Unlimited rights to 
002           duplicate and use this code are hereby granted provided that this 
003           copyright notice is included.
004    *****/
005    
006    package org.omg.CORBA;
007    
008    public class TRANSACTION_REQUIRED extends org.omg.CORBA.SystemException {
009    
010        public TRANSACTION_REQUIRED() {
011            super(null, 0, CompletionStatus.COMPLETED_MAYBE);
012        }
013    
014        public TRANSACTION_REQUIRED(int minor, CompletionStatus completed) {
015            super(null, minor, completed);
016        }
017    
018        public TRANSACTION_REQUIRED(String reason) {
019            super(reason, 0, CompletionStatus.COMPLETED_MAYBE);
020        }
021    
022        public TRANSACTION_REQUIRED(String reason,
023                        int minor, CompletionStatus completed) {
024            super(reason, minor, completed);
025        }
026    
027    }