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 BAD_CONTEXT extends org.omg.CORBA.SystemException {
009    
010      public BAD_CONTEXT() {
011        super(null, 0, CompletionStatus.COMPLETED_MAYBE);
012      }
013    
014      public BAD_CONTEXT(int minor, CompletionStatus completed) {
015        super(null, minor, completed);
016      }
017    
018      public BAD_CONTEXT(String reason) {
019        super(reason, 0, CompletionStatus.COMPLETED_MAYBE);
020      }
021    
022      public BAD_CONTEXT(String reason, int minor, CompletionStatus completed) {
023        super(reason, minor, completed);
024      }
025    
026    }