1 7 8 package org.omg.CORBA; 9 10 22 23 public final class BAD_OPERATION extends SystemException { 24 25 29 public BAD_OPERATION() { 30 this(""); 31 } 32 33 38 public BAD_OPERATION(String s) { 39 this(s, 0, CompletionStatus.COMPLETED_NO); 40 } 41 42 49 public BAD_OPERATION(int minor, CompletionStatus completed) { 50 this("", minor, completed); 51 } 52 53 62 public BAD_OPERATION(String s, int minor, CompletionStatus completed) { 63 super(s, minor, completed); 64 } 65 } 66 | Popular Tags |