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