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