1 7 8 package org.omg.CORBA; 9 10 27 28 public final class OBJ_ADAPTER extends SystemException { 29 34 public OBJ_ADAPTER() { 35 this(""); 36 } 37 38 43 public OBJ_ADAPTER(String s) { 44 this(s, 0, CompletionStatus.COMPLETED_NO); 45 } 46 47 53 public OBJ_ADAPTER(int minor, CompletionStatus completed) { 54 this("", minor, completed); 55 } 56 57 64 public OBJ_ADAPTER(String s, int minor, CompletionStatus completed) { 65 super(s, minor, completed); 66 } 67 } 68 | Popular Tags |