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