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