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